blob: 3e42432548ea07fe78f38e295ae2570c79a23045 [file] [log] [blame]
Dan Gohmanb1e1e822009-09-08 16:50:01 +00001; RUN: opt %s -sccp -loop-deletion -simplifycfg | llvm-dis | \
Reid Spencer9aafdcf2007-04-15 09:21:47 +00002; RUN: not grep br
Chris Lattner3d78b232004-04-13 19:43:33 +00003
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 Lattnerf396cc82008-03-19 04:14:49 +00007declare double @sqrt(double)
Chris Lattner3d78b232004-04-13 19:43:33 +00008
Tanya Lattnerf396cc82008-03-19 04:14:49 +00009define double @test(i32 %param) {
Chris Lattner3d78b232004-04-13 19:43:33 +000010entry:
11 br label %Loop
Tanya Lattnerf396cc82008-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
Chris Lattner3d78b232004-04-13 19:43:33 +000020 ret double %V
21}
Tanya Lattnerf396cc82008-03-19 04:14:49 +000022