You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc < %s -mattr=-vsx -march=ppc32 | grep fnabs
|
|
|
|
declare double @fabs(double)
|
|
|
|
define double @test(double %X) {
|
|
%Y = call double @fabs( double %X ) readnone ; <double> [#uses=1]
|
|
%Z = fsub double -0.000000e+00, %Y ; <double> [#uses=1]
|
|
ret double %Z
|
|
}
|
|
|