diff options
Diffstat (limited to 'test/CodeGen/ARM/large-stack.ll')
-rw-r--r-- | test/CodeGen/ARM/large-stack.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/large-stack.ll b/test/CodeGen/ARM/large-stack.ll index 2516522..4402659 100644 --- a/test/CodeGen/ARM/large-stack.ll +++ b/test/CodeGen/ARM/large-stack.ll @@ -1,12 +1,12 @@ ; RUN: llvm-as < %s | llc -march=arm && ; RUN: llvm-as < %s | llc -march=arm -enable-thumb -define void %test1() { +define void @test1() { %tmp = alloca [ 64 x i32 ] , align 4 ret void } -define void %test2() { +define void @test2() { %tmp = alloca [ 4168 x i8 ] , align 4 ret void } |