r294560 - [X86] Fix copy and paste bug in clzero test from r294559.
Craig Topper via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 8 22:22:43 PST 2017
Author: ctopper
Date: Thu Feb 9 00:22:43 2017
New Revision: 294560
URL: http://llvm.org/viewvc/llvm-project?rev=294560&view=rev
Log:
[X86] Fix copy and paste bug in clzero test from r294559.
Modified:
cfe/trunk/test/CodeGen/builtin-clzero.c
Modified: cfe/trunk/test/CodeGen/builtin-clzero.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtin-clzero.c?rev=294560&r1=294559&r2=294560&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/builtin-clzero.c (original)
+++ cfe/trunk/test/CodeGen/builtin-clzero.c Thu Feb 9 00:22:43 2017
@@ -4,6 +4,6 @@
#include <x86intrin.h>
void test_mm_clzero(void * __m) {
//CHECK-LABEL: @test_mm_clzero
- //CHECK: @llvm.x86.clflushopt
+ //CHECK: @llvm.x86.clzero
_mm_clzero(__m);
}
More information about the cfe-commits
mailing list