You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
410 B
7 lines
410 B
// RUN: %clang_cc1 %s -verify -fsyntax-only -std=c11
|
|
void foo() __attribute__((xray_always_instrument));
|
|
|
|
struct __attribute__((xray_always_instrument)) a { int x; }; // expected-warning {{'xray_always_instrument' attribute only applies to functions and methods}}
|
|
|
|
void bar() __attribute__((xray_always_instrument("not-supported"))); // expected-error {{'xray_always_instrument' attribute takes no arguments}}
|