diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/avx-logic.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/avx-logic.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/avx-logic.ll b/llvm/test/CodeGen/X86/avx-logic.ll index 115cefb1b5e..062956fbbc6 100644 --- a/llvm/test/CodeGen/X86/avx-logic.ll +++ b/llvm/test/CodeGen/X86/avx-logic.ll @@ -142,7 +142,7 @@ entry: ; CHECK: vandnpd (% define <4 x double> @andnotpd256fold(<4 x double> %y, <4 x double>* nocapture %x) nounwind uwtable readonly ssp { entry: - %tmp2 = load <4 x double>* %x, align 32 + %tmp2 = load <4 x double>, <4 x double>* %x, align 32 %0 = bitcast <4 x double> %y to <4 x i64> %neg.i = xor <4 x i64> %0, <i64 -1, i64 -1, i64 -1, i64 -1> %1 = bitcast <4 x double> %tmp2 to <4 x i64> @@ -167,7 +167,7 @@ entry: ; CHECK: vandnps (% define <8 x float> @andnotps256fold(<8 x float> %y, <8 x float>* nocapture %x) nounwind uwtable readonly ssp { entry: - %tmp2 = load <8 x float>* %x, align 32 + %tmp2 = load <8 x float>, <8 x float>* %x, align 32 %0 = bitcast <8 x float> %y to <8 x i32> %neg.i = xor <8 x i32> %0, <i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1, i32 -1> %1 = bitcast <8 x float> %tmp2 to <8 x i32> |