From bfc013461979eeed33e1047e7a487c2d6a76d0d1 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 7 Nov 2017 07:13:04 +0000 Subject: [PATCH] [X86] Remove alignment from a load in the f16c intrinsic test. The alignment shouldn't be required for load folding. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317545 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/f16c-intrinsics.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/f16c-intrinsics.ll b/test/CodeGen/X86/f16c-intrinsics.ll index 8b81a93e438..2ce4fbdd702 100644 --- a/test/CodeGen/X86/f16c-intrinsics.ll +++ b/test/CodeGen/X86/f16c-intrinsics.ll @@ -77,7 +77,7 @@ define <8 x float> @test_x86_vcvtph2ps_256_m(<8 x i16>* nocapture %a) nounwind { ; X64-AVX512VL: # BB#0: ; X64-AVX512VL-NEXT: vcvtph2ps (%rdi), %ymm0 # EVEX TO VEX Compression encoding: [0xc4,0xe2,0x7d,0x13,0x07] ; X64-AVX512VL-NEXT: retq # encoding: [0xc3] - %load = load <8 x i16>, <8 x i16>* %a, align 16 + %load = load <8 x i16>, <8 x i16>* %a %res = tail call <8 x float> @llvm.x86.vcvtph2ps.256(<8 x i16> %load) ret <8 x float> %res } -- 2.40.0