]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/ARM/stack-frame.ll
Update LLVM to r98631.
[FreeBSD/FreeBSD.git] / test / CodeGen / ARM / stack-frame.ll
1 ; RUN: llc < %s -march=arm
2 ; RUN: llc < %s -march=arm | grep add | count 1
3
4 define void @f1() {
5         %c = alloca i8, align 1
6         ret void
7 }
8
9 define i32 @f2() {
10         ret i32 1
11 }
12
13