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
Indentation change.
[llvm/avr.git]
/
test
/
CodeGen
/
PowerPC
/
fnabs.ll
blob
6c10dfbd44b0cb52c6e3ca61fd1a2eb131c6e94b
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 = fsub double -0.000000e+00, %Y ; <double> [#uses=1]
8
ret double %Z
9
}
10