[llvm] r317545 - [X86] Remove alignment from a load in the f16c intrinsic test. The alignment shouldn't be required for load folding.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 6 23:13:04 PST 2017


Author: ctopper
Date: Mon Nov  6 23:13:04 2017
New Revision: 317545

URL: http://llvm.org/viewvc/llvm-project?rev=317545&view=rev
Log:
[X86] Remove alignment from a load in the f16c intrinsic test. The alignment shouldn't be required for load folding.

Modified:
    llvm/trunk/test/CodeGen/X86/f16c-intrinsics.ll

Modified: llvm/trunk/test/CodeGen/X86/f16c-intrinsics.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/f16c-intrinsics.ll?rev=317545&r1=317544&r2=317545&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/f16c-intrinsics.ll (original)
+++ llvm/trunk/test/CodeGen/X86/f16c-intrinsics.ll Mon Nov  6 23:13:04 2017
@@ -77,7 +77,7 @@ define <8 x float> @test_x86_vcvtph2ps_2
 ; 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
 }




More information about the llvm-commits mailing list