mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Update Transforms tests to use CHECK-LABEL for easier debugging. No functionality change.
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
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
; rdar://9786536
|
||||
|
||||
; First, make sure LSR doesn't crash on an empty IVUsers list.
|
||||
; CHECK: @dummyIV
|
||||
; CHECK-LABEL: @dummyIV(
|
||||
; CHECK-NOT: phi
|
||||
; CHECK-NOT: sitofp
|
||||
; CHECK: br
|
||||
@@ -24,7 +24,7 @@ for.end:
|
||||
}
|
||||
|
||||
; Now check that the computed double constant is correct.
|
||||
; CHECK: @doubleIV
|
||||
; CHECK-LABEL: @doubleIV(
|
||||
; CHECK: phi double [ -3.900000e+01, %entry ]
|
||||
; CHECK: br
|
||||
define void @doubleIV() nounwind {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
|
||||
target triple = "x86_64-apple-darwin"
|
||||
|
||||
; CHECK: @test
|
||||
; CHECK-LABEL: @test(
|
||||
; CHECK: for.body:
|
||||
; CHECK: %lsr.iv
|
||||
; CHECK-NOT: %dummyout
|
||||
|
||||
Reference in New Issue
Block a user