]> granicus.if.org Git - llvm/commitdiff
[X86] Remove alignment from a load in the f16c intrinsic test. The alignment shouldn...
authorCraig Topper <craig.topper@intel.com>
Tue, 7 Nov 2017 07:13:04 +0000 (07:13 +0000)
committerCraig Topper <craig.topper@intel.com>
Tue, 7 Nov 2017 07:13:04 +0000 (07:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317545 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/f16c-intrinsics.ll

index 8b81a93e438f37773ae2bca2d2e189a6bfd2bcb7..2ce4fbdd7021519030a57ebeee8a22d8454256a6 100644 (file)
@@ -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
 }