diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-17 03:00:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-17 03:00:45 +0000 |
commit | 43ec2ce4730ecc9a133f28db99a5cd6b445d40e9 (patch) | |
tree | e0ea585fa3fccfa9312a9f7532616040219e7bb9 | |
parent | ae986d5ac7e0fdd9ccb5b2596f2446e85424e2b1 (diff) | |
download | bcm5719-llvm-43ec2ce4730ecc9a133f28db99a5cd6b445d40e9.tar.gz bcm5719-llvm-43ec2ce4730ecc9a133f28db99a5cd6b445d40e9.zip |
new testcase
llvm-svn: 39000
-rw-r--r-- | clang/test/Parser/attributes.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Parser/attributes.c b/clang/test/Parser/attributes.c new file mode 100644 index 00000000000..f619111208c --- /dev/null +++ b/clang/test/Parser/attributes.c @@ -0,0 +1,6 @@ +// RUN: clang -fsyntax-only %s + +static __inline void __attribute__((__always_inline__, __nodebug__)) +foo (void) +{ +} |