summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/large-stack.ll
blob: 2516522d042a12233d6506bc9b87faee5d136d70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | llc -march=arm &&
; RUN: llvm-as < %s | llc -march=arm -enable-thumb

define void %test1() {
    %tmp = alloca [ 64 x i32 ] , align 4
    ret void
}

define void %test2() {
    %tmp = alloca [ 4168 x i8 ] , align 4
    ret void
}