repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-complete.git]
/
test
/
CodeGen
/
X86
/
fp-stack-direct-ret.ll
blob
b8bd22308c0da3dd337f9a57d208c79b9ec16a65
1
; RUN: llc < %s -mtriple=i686-- | not grep fstp
2
; RUN: llc < %s -mtriple=i686-- -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