diff options
Diffstat (limited to 'tools/build/feature/test-clang-bpf-co-re.c')
-rw-r--r-- | tools/build/feature/test-clang-bpf-co-re.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/build/feature/test-clang-bpf-co-re.c b/tools/build/feature/test-clang-bpf-co-re.c new file mode 100644 index 000000000..cb5265bfd --- /dev/null +++ b/tools/build/feature/test-clang-bpf-co-re.c @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0 +// Copyright (c) 2020 Facebook + +struct test { + int a; + int b; +} __attribute__((preserve_access_index)); + +volatile struct test global_value_for_test = {}; |