Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.git] / test / Transforms / LICM / 2008-07-22-LoadGlobalConstant.ll
blob78103093843863bcec6589852699d1d8d4267a50
1 ; RUN: opt < %s -licm -enable-licm-constant-variables -S | grep -A 1 entry | grep load.*@a
2 @a = external constant float*
4 define void @test(i32 %count) {
5 entry:
6         br label %forcond
8 forcond:
9         %i.0 = phi i32 [ 0, %entry ], [ %inc, %forbody ]
10         %cmp = icmp ult i32 %i.0, %count
11         br i1 %cmp, label %forbody, label %afterfor
13 forbody:
14         %tmp3 = load float** @a
15         %arrayidx = getelementptr float* %tmp3, i32 %i.0
16         %tmp7 = uitofp i32 %i.0 to float
17         store float %tmp7, float* %arrayidx
18         %inc = add i32 %i.0, 1
19         br label %forcond
21 afterfor:
22         ret void