27 lines · plain
1; This should be run without alias analysis enabled.2; RUN: opt %loadNPMPolly '-passes=polly-custom<scops>' -polly-print-scops -disable-output < %s3target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"4 5define i32 @main() nounwind {6entry:7 %t.02.reg2mem = alloca float8 br label %entry.split9 10entry.split: ; preds = %entry11 store float 0.000000e+00, ptr %t.02.reg2mem12 br label %for.body13 14for.body: ; preds = %for.body, %entry.split15 %j.01 = phi i32 [ 0, %entry.split ], [ %inc1, %for.body ]16 %t.02.reload = load float, ptr %t.02.reg2mem17 %inc = fadd float %t.02.reload, 1.000000e+0018 %inc1 = add nsw i32 %j.01, 119 %exitcond = icmp eq i32 %inc1, 500000120 store float %inc, ptr %t.02.reg2mem21 br i1 %exitcond, label %for.end, label %for.body22 23for.end: ; preds = %for.body24 %conv = fptosi float %inc to i3225 ret i32 %conv26}27