diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-05-25 04:43:38 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-05-25 04:43:38 +0000 |
commit | 143520261eb41411beb3e2a8cf6d8dc822db7d50 (patch) | |
tree | 87e4b2b606d4709187cb94c60c5a2c9468d60adb /test/Sema/builtins.c | |
parent | 0613c37d7914672585e67bedd18d9a1588104360 (diff) |
Fix this test on non-X86 platforms.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/builtins.c')
-rw-r--r-- | test/Sema/builtins.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Sema/builtins.c b/test/Sema/builtins.c index 58cb92f513..d02adf3165 100644 --- a/test/Sema/builtins.c +++ b/test/Sema/builtins.c @@ -1,4 +1,5 @@ -// RUN: clang %s -fsyntax-only -verify -pedantic +// RUN: clang %s -fsyntax-only -verify -pedantic -triple=i686-apple-darwin9 +// This test needs to set the target because it uses __builtin_ia32_vec_ext_v4si int test1(float a, int b) { return __builtin_isless(a, b); |