diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2010-12-02 17:31:16 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2010-12-02 17:31:16 +0000 |
| commit | 2e71fb55c145ff338d637948f5fd30a20581f096 (patch) | |
| tree | d6d5a868185d886e6434aa8c946bb2ec95edf0e2 /clang/test/Headers/arm-neon-header.c | |
| parent | 50198098b95d30dc027ac4f89e77a727b3a25635 (diff) | |
| download | bcm5719-llvm-2e71fb55c145ff338d637948f5fd30a20581f096.tar.gz bcm5719-llvm-2e71fb55c145ff338d637948f5fd30a20581f096.zip | |
Attempt to fix linux buildbots by adding -ffreestanding for arm_neon tests.
The arm_neon.h header includes stdint.h and it picks up the system header
without -ffreestanding.
llvm-svn: 120716
Diffstat (limited to 'clang/test/Headers/arm-neon-header.c')
| -rw-r--r-- | clang/test/Headers/arm-neon-header.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Headers/arm-neon-header.c b/clang/test/Headers/arm-neon-header.c index e1190411108..90ea22bc96f 100644 --- a/clang/test/Headers/arm-neon-header.c +++ b/clang/test/Headers/arm-neon-header.c @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -verify %s -// RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -fno-lax-vector-conversions -verify %s -// RUN: %clang_cc1 -x c++ -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -verify %s +// RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -ffreestanding %s +// RUN: %clang_cc1 -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -fno-lax-vector-conversions -ffreestanding %s +// RUN: %clang_cc1 -x c++ -triple thumbv7-apple-darwin10 -target-cpu cortex-a8 -fsyntax-only -Wvector-conversions -ffreestanding %s #include <arm_neon.h> |

