diff options
Diffstat (limited to 'test/CodeGen/X86/fast-isel-mem.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel-mem.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/fast-isel-mem.ll b/test/CodeGen/X86/fast-isel-mem.ll index eca1ae9..3f1d9ca 100644 --- a/test/CodeGen/X86/fast-isel-mem.ll +++ b/test/CodeGen/X86/fast-isel-mem.ll @@ -6,8 +6,8 @@ ; rdar://6653118 define i32 @loadgv() nounwind { entry: - %0 = load i32* @src, align 4 - %1 = load i32* @src, align 4 + %0 = load i32, i32* @src, align 4 + %1 = load i32, i32* @src, align 4 %2 = add i32 %0, %1 store i32 %2, i32* @src ret i32 %2 @@ -33,7 +33,7 @@ entry: define void @t(%stuff* %this) nounwind { entry: - store i32 (...)** getelementptr ([4 x i32 (...)*]* @LotsStuff, i32 0, i32 2), i32 (...)*** null, align 4 + store i32 (...)** getelementptr ([4 x i32 (...)*], [4 x i32 (...)*]* @LotsStuff, i32 0, i32 2), i32 (...)*** null, align 4 ret void ; CHECK: _t: ; CHECK: xorl %eax, %eax |