xref: /llvm-project/clang/test/Sema/xray-always-instrument-attr.c (revision 22db4824b9e03fe8c2e9217d6832b71ac23c175f)
1 // RUN: %clang_cc1 %s -verify -fsyntax-only -std=c11
2 void foo(void) __attribute__((xray_always_instrument));
3 
4 struct __attribute__((xray_always_instrument)) a { int x; }; // expected-warning {{'xray_always_instrument' attribute only applies to functions and Objective-C methods}}
5 
6 void bar(void) __attribute__((xray_always_instrument("not-supported"))); // expected-error {{'xray_always_instrument' attribute takes no arguments}}
7