llvm-project/llvm/test/CodeGen/PowerPC/fnabs.ll

12 lines
218 B
LLVM
Raw Normal View History

; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | grep fnabs
2005-04-09 12:03:16 +08:00
declare double %fabs(double)
implementation
double %test(double %X) {
%Y = call double %fabs(double %X)
%Z = sub double -0.0, %Y
ret double %Z
}