39 lines · plain
1; RUN: llc < %s -mtriple=i686-- -relocation-model=static | FileCheck %s2; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s3; CHECK-NOT: lea4 5; P should be sunk into the loop and folded into the address mode. There6; shouldn't be any lea instructions inside the loop.7 8@B = external dso_local global [1000 x i8], align 329@A = external dso_local global [1000 x i8], align 3210@P = external dso_local global [1000 x i8], align 3211@Q = external dso_local global [1000 x i8], align 3212 13define void @foo(i32 %m, i32 %p) nounwind {14entry:15 %tmp1 = icmp sgt i32 %m, 016 br i1 %tmp1, label %bb, label %return17 18bb:19 %i.019.0 = phi i32 [ %indvar.next, %bb ], [ 0, %entry ]20 %tmp2 = getelementptr [1000 x i8], ptr @B, i32 0, i32 %i.019.021 %tmp3 = load i8, ptr %tmp2, align 422 %tmp4 = mul i8 %tmp3, 223 %tmp5 = getelementptr [1000 x i8], ptr @A, i32 0, i32 %i.019.024 store i8 %tmp4, ptr %tmp5, align 425 %tmp8 = mul i32 %i.019.0, 926 %tmp0 = add i32 %tmp8, %p27 %tmp10 = getelementptr [1000 x i8], ptr @P, i32 0, i32 %tmp028 store i8 17, ptr %tmp10, align 429 %tmp11 = getelementptr [1000 x i8], ptr @Q, i32 0, i32 %tmp030 store i8 19, ptr %tmp11, align 431 %indvar.next = add i32 %i.019.0, 132 %exitcond = icmp eq i32 %indvar.next, %m33 br i1 %exitcond, label %return, label %bb34 35return:36 ret void37}38 39