repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Shrink Thumb2 movcc instructions.
[llvm/avr.git]
/
test
/
CodeGen
/
X86
/
fp-stack-direct-ret.ll
blob
78be2a39defb12b7e34ba8bcf4e7c38f5c09802d
1
; RUN: llvm-as < %s | llc -march=x86 | not grep fstp
2
; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | not grep movsd
3
4
declare double @foo()
5
6
define double @bar() {
7
entry:
8
%tmp5 = tail call double @foo()
9
ret double %tmp5
10
}
11