diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2015-03-24 20:35:24 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2015-03-24 20:35:24 +0000 |
| commit | 1a94ccbec82acabc40739108d2e69474686599fe (patch) | |
| tree | ec232037bfe8475bc9eb8deba39129b22a1e8da7 /clang/test/CodeGen | |
| parent | 43386c3b9c519fdd3fe90456a9c23bee69e37302 (diff) | |
| download | bcm5719-llvm-1a94ccbec82acabc40739108d2e69474686599fe.tar.gz bcm5719-llvm-1a94ccbec82acabc40739108d2e69474686599fe.zip | |
Removing a CHECK that is about to go wrong.
I'm about to commit a patch for:
http://reviews.llvm.org/D8567
That patch will break this one existing test case in Clang.
I'm not sure if this file is intending to create a Clang
dependency on the LLVM IR optimizer, but that's the
consequence of specifying -O3 on this test file.
My hope is to avoid buildbot rage by removing this check,
committing the LLVM patch, and then fixing this check.
I don't know how to make a simultaneous commit to Clang
and LLVM.
I will commit the correct CHECK line fix for this test
shortly.
llvm-svn: 233109
Diffstat (limited to 'clang/test/CodeGen')
| -rw-r--r-- | clang/test/CodeGen/avx-shuffle-builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGen/avx-shuffle-builtins.c b/clang/test/CodeGen/avx-shuffle-builtins.c index af4bcbd23ba..a9ab88f3df6 100644 --- a/clang/test/CodeGen/avx-shuffle-builtins.c +++ b/clang/test/CodeGen/avx-shuffle-builtins.c @@ -53,8 +53,7 @@ __m256d test_mm256_permute2f128_pd(__m256d a, __m256d b) { } __m256 test_mm256_permute2f128_ps(__m256 a, __m256 b) { - // Check if the mask is correct - // CHECK: shufflevector{{.*}} <8 x i32> <i32 12, i32 13, i32 14, i32 15, i32 4, i32 5, i32 6, i32 7> + // FIXME: Check if the mask is correct return _mm256_permute2f128_ps(a, b, 0x13); } |

