repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
CodeGen
/
ARM
/
stack-frame.ll
blob
73ae11b973c206f1e5b95096bd1591d0ea4d335b
1
; RUN: llvm-as < %s | llc -march=arm
2
; RUN: llvm-as < %s | llc -march=arm | grep add | count 1
3
; RUN: llvm-as < %s | llc -march=thumb
4
; RUN: llvm-as < %s | llc -march=thumb | grep add | count 1
5
6
define void @f1() {
7
%c = alloca i8, align 1
8
ret void
9
}
10
11
define i32 @f2() {
12
ret i32 1
13
}
14
15