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
Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git]
/
test
/
CodeGen
/
PowerPC
/
fnabs.ll
blob
bbd5c7159edc46e52110aa4ebfa91c4c0dd8ed5d
1
; RUN: llc < %s -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