diff options
Diffstat (limited to 'test/Sema/init.c')
-rw-r--r-- | test/Sema/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Sema/init.c b/test/Sema/init.c index ac274a4ce..f811007 100644 --- a/test/Sema/init.c +++ b/test/Sema/init.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -verify -fsyntax-only +// RUN: %clang_cc1 %s -verify -fsyntax-only -ffreestanding #include <stddef.h> #include <stdint.h> @@ -143,3 +143,4 @@ int PR4386_a = ((void *) PR4386_bar) != 0; int PR4386_b = ((void *) PR4386_foo) != 0; // expected-error{{initializer element is not a compile-time constant}} int PR4386_c = ((void *) PR4386_zed) != 0; int PR4386_zed() __attribute((weak)); + |