blob: f4e0186fff4087a8f7c519296bedb6b42c5bc2a8 [file] [log] [blame]
Dan Gohman5bb7c7c2009-09-08 22:34:10 +00001; RUN: opt %s -sccp -loop-deletion -simplifycfg -S | \
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: not grep br
3
4; No matter how hard you try, sqrt(1.0) is always 1.0. This allows the
5; optimizer to delete this loop.
6
Tanya Lattnerba93e2d2008-03-19 04:14:49 +00007declare double @sqrt(double)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00008
Tanya Lattnerba93e2d2008-03-19 04:14:49 +00009define double @test(i32 %param) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010entry:
11 br label %Loop
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000012Loop: ; preds = %Loop, %entry
13 %I2 = phi i32 [ 0, %entry ], [ %I3, %Loop ] ; <i32> [#uses=1]
14 %V = phi double [ 1.000000e+00, %entry ], [ %V2, %Loop ] ; <double> [#uses=2]
15 %V2 = call double @sqrt( double %V ) ; <double> [#uses=1]
16 %I3 = add i32 %I2, 1 ; <i32> [#uses=2]
17 %tmp.7 = icmp ne i32 %I3, %param ; <i1> [#uses=1]
18 br i1 %tmp.7, label %Loop, label %Exit
19Exit: ; preds = %Loop
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020 ret double %V
21}
Tanya Lattnerba93e2d2008-03-19 04:14:49 +000022