blob: fe00f4a764e95ca13c2f9c349c45b444bba81eb8 [file] [log] [blame]
Dale Johannesen029e1c42007-09-10 22:47:59 +00001; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | grep call
Chris Lattner308ae142007-09-10 20:58:55 +00002; Don't turn this into an infinite loop, this is probably the implementation
3; of fabs and we expect the codegen to lower fabs.
4
5define double @fabs(double %f) {
6entry:
7 %tmp2 = call double @fabs( double %f ) ; <double> [#uses=1]
8 ret double %tmp2
9}
10