diff options
Diffstat (limited to 'test/CodeGen/X86/huge-stack-offset.ll')
-rw-r--r-- | test/CodeGen/X86/huge-stack-offset.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/huge-stack-offset.ll b/test/CodeGen/X86/huge-stack-offset.ll index 6195161..eea389b 100644 --- a/test/CodeGen/X86/huge-stack-offset.ll +++ b/test/CodeGen/X86/huge-stack-offset.ll @@ -19,7 +19,7 @@ define void @foo() nounwind { ; CHECK-32: movl $50000000{{..}}, [[EAX:%e..]] ; CHECK-32-NEXT: addl [[EAX]], %esp %1 = alloca [5000000000 x i8], align 16 - %2 = getelementptr inbounds [5000000000 x i8]* %1, i32 0, i32 0 + %2 = getelementptr inbounds [5000000000 x i8], [5000000000 x i8]* %1, i32 0, i32 0 call void @bar(i8* %2) ret void } @@ -35,7 +35,7 @@ define i32 @foo2() nounwind { ; CHECK-32: movl $10, %eax ; CHECK-32-NOT: movl ${{.*}}, %eax %1 = alloca [5000000000 x i8], align 16 - %2 = getelementptr inbounds [5000000000 x i8]* %1, i32 0, i32 0 + %2 = getelementptr inbounds [5000000000 x i8], [5000000000 x i8]* %1, i32 0, i32 0 call void @bar(i8* %2) ret i32 10 } @@ -51,7 +51,7 @@ define i32 @foo3(i32 inreg %x) nounwind { ; CHECK-32: subl $2147483647, %esp ; CHECK-32-NOT: movl ${{.*}}, %eax %1 = alloca [5000000000 x i8], align 16 - %2 = getelementptr inbounds [5000000000 x i8]* %1, i32 0, i32 0 + %2 = getelementptr inbounds [5000000000 x i8], [5000000000 x i8]* %1, i32 0, i32 0 call void @bar(i8* %2) ret i32 %x } |