brintos

brintos / llvm-project-archived public Read only

0
0
Text · 436 B · e624ff4 Raw
12 lines · c
1// RUN: %clang_cc1 %s -verify -fsyntax-only2 3int a __attribute__((nodebug));4 5void b(int p __attribute__((nodebug))) { // expected-warning {{'nodebug' attribute only applies to typedefs, functions, function pointers, Objective-C methods, and variables}}6  int b __attribute__((nodebug));7}8 9void t1(void) __attribute__((nodebug));10 11void t2(void) __attribute__((nodebug(2))); // expected-error {{'nodebug' attribute takes no arguments}}12