aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/attr-nodebug.c
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2012-07-24 01:40:49 +0000
committerNick Lewycky <nicholas@mxc.ca>2012-07-24 01:40:49 +0000
commit78d1a10e13a1abfd4830bccf2a97b2993da1ed5c (patch)
tree1cdf9d8bfd0887ab21721de66e769ddba67fb233 /test/Sema/attr-nodebug.c
parentf50b6fe092091a700cee7a708d509ae7c49709f6 (diff)
Emit debug info for dynamic initializers. Permit __attribute__((nodebug)) on
variables that have static storage duration, it removes debug info on the emitted initializer function but not all debug info about this variable. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160659 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/attr-nodebug.c')
-rw-r--r--test/Sema/attr-nodebug.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Sema/attr-nodebug.c b/test/Sema/attr-nodebug.c
index a66e96168d..3cc4088e4b 100644
--- a/test/Sema/attr-nodebug.c
+++ b/test/Sema/attr-nodebug.c
@@ -1,8 +1,11 @@
// RUN: %clang_cc1 %s -verify -fsyntax-only
-int a __attribute__((nodebug)); // expected-warning {{'nodebug' attribute only applies to functions}}
+int a __attribute__((nodebug));
+
+void b() {
+ int b __attribute__((nodebug)); // expected-warning {{'nodebug' only applies to variables with static storage duration and functions}}
+}
void t1() __attribute__((nodebug));
void t2() __attribute__((nodebug(2))); // expected-error {{attribute takes no arguments}}
-