blob: 9a5a8db21c5740a6a084eea0fa664675e4dce2aa [file] [log] [blame]
Dan Gohman3e054fe2009-09-08 22:34:10 +00001; RUN: opt %s -tailcallelim -S | grep call
Chris Lattner8d9455d2007-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