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
In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git]
/
test
/
CodeGen
/
PowerPC
/
fnabs.ll
blob
b9517de28f9d3d57ce0d3532e14d37672cb529c0
1
; RUN: llvm-as < %s | llc -march=ppc32 | grep fnabs
2
3
declare double @fabs(double)
4
5
define double @test(double %X) {
6
%Y = call double @fabs( double %X ) ; <double> [#uses=1]
7
%Z = sub double -0.000000e+00, %Y ; <double> [#uses=1]
8
ret double %Z
9
}
10