mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
39f4e8d9cc
This update was done with the following bash script: find test/Transforms -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP done mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186268 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
813 B
LLVM
28 lines
813 B
LLVM
; RUN: opt -S -indvars < %s | FileCheck %s
|
|
|
|
; PR12627
|
|
define void @test1(i32 %x) nounwind uwtable ssp {
|
|
entry:
|
|
br label %for.body
|
|
|
|
for.body: ; preds = %for.body, %entry
|
|
%phi1 = phi i1 [ false, %entry ], [ %cmpa, %for.body ]
|
|
%phi2 = phi i1 [ false, %entry ], [ %cmpb, %for.body ]
|
|
%i.07 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
|
|
tail call void @aux(i1 %phi1, i1 %phi2) nounwind
|
|
%cmpa = icmp sgt i32 %i.07, 200
|
|
%cmpb = icmp sgt i32 %i.07, 100
|
|
%inc = add nsw i32 %i.07, 1
|
|
%exitcond = icmp eq i32 %inc, 100
|
|
br i1 %exitcond, label %for.end, label %for.body
|
|
|
|
for.end: ; preds = %for.body
|
|
ret void
|
|
|
|
; CHECK-LABEL: @test1(
|
|
; CHECK-NOT: phi i1
|
|
; CHECK: call void @aux(i1 false, i1 false)
|
|
}
|
|
|
|
declare void @aux(i1, i1)
|