diff options
Diffstat (limited to 'llvm/test/CodeGen/Thumb/large-stack.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb/large-stack.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Thumb/large-stack.ll b/llvm/test/CodeGen/Thumb/large-stack.ll index b0152ddc4d3..f35bffba5ca 100644 --- a/llvm/test/CodeGen/Thumb/large-stack.ll +++ b/llvm/test/CodeGen/Thumb/large-stack.ll @@ -75,7 +75,7 @@ define i32 @test3() { ; CHECK: add sp, [[TEMP3]] %retval = alloca i32, align 4 %tmp = alloca i32, align 4 - %a = alloca [805306369 x i8], align 16 + %a = alloca [805306369 x i8], align 4 store i32 0, i32* %tmp %tmp1 = load i32, i32* %tmp ret i32 %tmp1 @@ -91,7 +91,7 @@ define i32 @test3_nofpelim() "no-frame-pointer-elim"="true" { ; CHECK: mov sp, r4 %retval = alloca i32, align 4 %tmp = alloca i32, align 4 - %a = alloca [805306369 x i8], align 16 + %a = alloca [805306369 x i8], align 8 store i32 0, i32* %tmp %tmp1 = load i32, i32* %tmp ret i32 %tmp1 |