From ce889a4ce30953e987a1469d130fb753886667bb Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper@gmail.com>
Date: Thu, 9 Feb 2017 06:22:43 +0000
Subject: [PATCH] [X86] Fix copy and paste bug in clzero test from r294559.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@294560 91177308-0d34-0410-b5e6-96231b3b80d8
---
 test/CodeGen/builtin-clzero.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/CodeGen/builtin-clzero.c b/test/CodeGen/builtin-clzero.c
index 4e91129a20c..c9960ced12e 100644
--- a/test/CodeGen/builtin-clzero.c
+++ b/test/CodeGen/builtin-clzero.c
@@ -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);
 }
-- 
GitLab