brintos

brintos / llvm-project-archived public Read only

0
0
Text · 891 B · ad743fd Raw
34 lines · plain
1; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mcpu=cortex-a8 | FileCheck %s2 3; Overly aggressive LICM simply adds copies of constants4; rdar://92666795 6define zeroext i1 @t(ptr nocapture %A, i32 %size, i32 %value) nounwind readonly ssp {7; CHECK-LABEL: t:8entry:9  br label %for.cond10 11for.cond:12  %0 = phi i32 [ 0, %entry ], [ %inc, %for.inc ]13  %cmp = icmp ult i32 %0, %size14  br i1 %cmp, label %for.body, label %return15 16for.body:17; CHECK: %for.18; CHECK: mov{{.*}} r{{[0-9]+}}, #{{[01]}}19; CHECK: mov{{.*}} r{{[0-9]+}}, #{{[01]}}20; CHECK-NOT: mov r{{[0-9]+}}, #{{[01]}}21  %arrayidx = getelementptr i32, ptr %A, i32 %022  %tmp4 = load i32, ptr %arrayidx, align 423  %cmp6 = icmp eq i32 %tmp4, %value24  br i1 %cmp6, label %return, label %for.inc25 26for.inc:27  %inc = add i32 %0, 128  br label %for.cond29 30return:31  %retval.0 = phi i1 [ true, %for.body ], [ false, %for.cond ]32  ret i1 %retval.033}34