From a2d920301bf18e909aeeb7d5817fdb76160138a4 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sat, 16 Sep 2017 07:13:39 +0000 Subject: [PATCH] [X86] Fix some FileCheck lines that use the wrong prefix. Assume they were moved during autoupgrading and not changed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313448 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../X86/avx2-intrinsics-x86-upgrade.ll | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/CodeGen/X86/avx2-intrinsics-x86-upgrade.ll b/test/CodeGen/X86/avx2-intrinsics-x86-upgrade.ll index 3fbebbacc1c..8f75311db10 100644 --- a/test/CodeGen/X86/avx2-intrinsics-x86-upgrade.ll +++ b/test/CodeGen/X86/avx2-intrinsics-x86-upgrade.ll @@ -535,20 +535,20 @@ define <16 x i16> @mm256_avg_epu16(<16 x i16> %a0, <16 x i16> %a1) { declare <16 x i16> @llvm.x86.avx2.pavg.w(<16 x i16>, <16 x i16>) nounwind readnone define <32 x i8> @test_x86_avx2_pabs_b(<32 x i8> %a0) { -; AVX2-LABEL: test_x86_avx2_pabs_b: -; AVX2: ## BB#0: -; AVX2-NEXT: vpabsb %ymm0, %ymm0 ## encoding: [0xc4,0xe2,0x7d,0x1c,0xc0] -; AVX2-NEXT: retl ## encoding: [0xc3] +; CHECK-LABEL: test_x86_avx2_pabs_b: +; CHECK: ## BB#0: +; CHECK-NEXT: vpabsb %ymm0, %ymm0 +; CHECK-NEXT: retl %res = call <32 x i8> @llvm.x86.avx2.pabs.b(<32 x i8> %a0) ; <<32 x i8>> [#uses=1] ret <32 x i8> %res } declare <32 x i8> @llvm.x86.avx2.pabs.b(<32 x i8>) nounwind readnone define <8 x i32> @test_x86_avx2_pabs_d(<8 x i32> %a0) { -; AVX2-LABEL: test_x86_avx2_pabs_d: -; AVX2: ## BB#0: -; AVX2-NEXT: vpabsd %ymm0, %ymm0 ## encoding: [0xc4,0xe2,0x7d,0x1e,0xc0] -; AVX2-NEXT: retl ## encoding: [0xc3] +; CHECK-LABEL: test_x86_avx2_pabs_d: +; CHECK: ## BB#0: +; CHECK-NEXT: vpabsd %ymm0, %ymm0 +; CHECK-NEXT: retl %res = call <8 x i32> @llvm.x86.avx2.pabs.d(<8 x i32> %a0) ; <<8 x i32>> [#uses=1] ret <8 x i32> %res } @@ -556,10 +556,10 @@ declare <8 x i32> @llvm.x86.avx2.pabs.d(<8 x i32>) nounwind readnone define <16 x i16> @test_x86_avx2_pabs_w(<16 x i16> %a0) { -; AVX2-LABEL: test_x86_avx2_pabs_w: -; AVX2: ## BB#0: -; AVX2-NEXT: vpabsw %ymm0, %ymm0 ## encoding: [0xc4,0xe2,0x7d,0x1d,0xc0] -; AVX2-NEXT: retl ## encoding: [0xc3] +; CHECK-LABEL: test_x86_avx2_pabs_w: +; CHECK: ## BB#0: +; CHECK-NEXT: vpabsw %ymm0, %ymm0 +; CHECK-NEXT: retl %res = call <16 x i16> @llvm.x86.avx2.pabs.w(<16 x i16> %a0) ; <<16 x i16>> [#uses=1] ret <16 x i16> %res } -- 2.40.0