xref: /llvm-project/clang/test/CodeGen/xray-function-index.c (revision e0a6561ec9ec10f8c0c43b15dfcbbc3c57d37d3f)
1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -S -triple x86_64 -fxray-instrument -fxray-instruction-threshold=1 %s -o - | FileCheck %s
3 // RUN: %clang_cc1 -S -triple x86_64 -fxray-instrument -fxray-instruction-threshold=1 -fno-xray-function-index %s -o - | FileCheck %s --check-prefix=NO
4 
5 // CHECK: .section xray_fn_idx,"ao",@progbits,foo
6 // NO-NOT: .section xray_fn_idx
7 
foo(void)8 void foo(void) {}
9