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