diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-06-27 04:30:12 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-06-27 04:30:12 +0000 |
commit | eb2def66bebc1512d0e5b3fb9c930c8840d690d3 (patch) | |
tree | c4f3af4ffe8025a1ff37f8d470d8c9c888eaabab /clang/test/Parser/attributes.c | |
parent | ff1d2c81ba99aca31f7d9c4a9f9def9cc573762e (diff) | |
download | bcm5719-llvm-eb2def66bebc1512d0e5b3fb9c930c8840d690d3.tar.gz bcm5719-llvm-eb2def66bebc1512d0e5b3fb9c930c8840d690d3.zip |
Submitted by: Bill Wendling
- Converted to use the -parse-ast-check flag.
llvm-svn: 39681
Diffstat (limited to 'clang/test/Parser/attributes.c')
-rw-r--r-- | clang/test/Parser/attributes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Parser/attributes.c b/clang/test/Parser/attributes.c index f619111208c..29e8c81f3b1 100644 --- a/clang/test/Parser/attributes.c +++ b/clang/test/Parser/attributes.c @@ -1,6 +1,6 @@ -// RUN: clang -fsyntax-only %s +// RUN: clang -parse-ast-check %s -static __inline void __attribute__((__always_inline__, __nodebug__)) +static __inline void __attribute__((__always_inline__, __nodebug__)) // expected-warning {{extension used}} foo (void) { } |