diff options
Diffstat (limited to 'test/CodeGen/X86/vector-variable-idx2.ll')
-rw-r--r-- | test/CodeGen/X86/vector-variable-idx2.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/vector-variable-idx2.ll b/test/CodeGen/X86/vector-variable-idx2.ll index 6e8ae2e..df65257 100644 --- a/test/CodeGen/X86/vector-variable-idx2.ll +++ b/test/CodeGen/X86/vector-variable-idx2.ll @@ -8,8 +8,8 @@ define i64 @__builtin_ia32_vec_ext_v2di(<2 x i64> %a, i32 %i) nounwind { %2 = alloca i32, align 4 store <2 x i64> %a, <2 x i64>* %1, align 16 store i32 %i, i32* %2, align 4 - %3 = load <2 x i64>* %1, align 16 - %4 = load i32* %2, align 4 + %3 = load <2 x i64>, <2 x i64>* %1, align 16 + %4 = load i32, i32* %2, align 4 %5 = extractelement <2 x i64> %3, i32 %4 ret i64 %5 } @@ -19,8 +19,8 @@ define <2 x i64> @__builtin_ia32_vec_int_v2di(<2 x i64> %a, i32 %i) nounwind { %2 = alloca i32, align 4 store <2 x i64> %a, <2 x i64>* %1, align 16 store i32 %i, i32* %2, align 4 - %3 = load <2 x i64>* %1, align 16 - %4 = load i32* %2, align 4 + %3 = load <2 x i64>, <2 x i64>* %1, align 16 + %4 = load i32, i32* %2, align 4 %5 = insertelement <2 x i64> %3, i64 1, i32 %4 ret <2 x i64> %5 } |