Dan Gohman | 3e054fe | 2009-09-08 22:34:10 +0000 | [diff] [blame] | 1 | ; RUN: opt %s -tailcallelim -S | grep call |
Chris Lattner | 8d9455d | 2007-09-10 20:58:55 +0000 | [diff] [blame] | 2 | ; 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 | |||||
5 | define double @fabs(double %f) { | ||||
6 | entry: | ||||
7 | %tmp2 = call double @fabs( double %f ) ; <double> [#uses=1] | ||||
8 | ret double %tmp2 | ||||
9 | } | ||||
10 |