From: Sanjay Patel Date: Tue, 24 Mar 2015 20:35:24 +0000 (+0000) Subject: Removing a CHECK that is about to go wrong. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44bf613b0868a6f13767ad93d841fed81dd38c7d;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@233109 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/avx-shuffle-builtins.c b/test/CodeGen/avx-shuffle-builtins.c index af4bcbd23b..a9ab88f3df 100644 --- a/test/CodeGen/avx-shuffle-builtins.c +++ b/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> + // FIXME: Check if the mask is correct return _mm256_permute2f128_ps(a, b, 0x13); }