attr-nodebug.c 366 B

1234567891011
  1. // RUN: %clang_cc1 %s -verify -fsyntax-only
  2. int a __attribute__((nodebug));
  3. void b() {
  4. int b __attribute__((nodebug)); // expected-warning {{'nodebug' only applies to variables with static storage duration and functions}}
  5. }
  6. void t1() __attribute__((nodebug));
  7. void t2() __attribute__((nodebug(2))); // expected-error {{'nodebug' attribute takes no arguments}}