diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 01:42:54 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 01:42:54 +0000 |
commit | 39f4e8d9cce22b60a3417a5f17c847fa5b1daebf (patch) | |
tree | 7fed202a2c2c7866f60344b6388e0d3bd98cb14c /test/Transforms/InstSimplify/call.ll | |
parent | 82e539d037a33f968e4a5476d3d471e1112f8ab2 (diff) | |
download | external_llvm-39f4e8d9cce22b60a3417a5f17c847fa5b1daebf.tar.gz external_llvm-39f4e8d9cce22b60a3417a5f17c847fa5b1daebf.tar.bz2 external_llvm-39f4e8d9cce22b60a3417a5f17c847fa5b1daebf.zip |
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
Diffstat (limited to 'test/Transforms/InstSimplify/call.ll')
-rw-r--r-- | test/Transforms/InstSimplify/call.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Transforms/InstSimplify/call.ll b/test/Transforms/InstSimplify/call.ll index cf2f847676..3e1621c838 100644 --- a/test/Transforms/InstSimplify/call.ll +++ b/test/Transforms/InstSimplify/call.ll @@ -3,7 +3,7 @@ declare {i8, i1} @llvm.uadd.with.overflow.i8(i8 %a, i8 %b) define i1 @test_uadd1() { -; CHECK: @test_uadd1 +; CHECK-LABEL: @test_uadd1( %x = call {i8, i1} @llvm.uadd.with.overflow.i8(i8 254, i8 3) %overflow = extractvalue {i8, i1} %x, 1 ret i1 %overflow @@ -11,7 +11,7 @@ define i1 @test_uadd1() { } define i8 @test_uadd2() { -; CHECK: @test_uadd2 +; CHECK-LABEL: @test_uadd2( %x = call {i8, i1} @llvm.uadd.with.overflow.i8(i8 254, i8 44) %result = extractvalue {i8, i1} %x, 0 ret i8 %result @@ -21,7 +21,7 @@ define i8 @test_uadd2() { declare i256 @llvm.cttz.i256(i256 %src, i1 %is_zero_undef) define i256 @test_cttz() { -; CHECK: @test_cttz +; CHECK-LABEL: @test_cttz( %x = call i256 @llvm.cttz.i256(i256 10, i1 false) ret i256 %x ; CHECK-NEXT: ret i256 1 @@ -30,7 +30,7 @@ define i256 @test_cttz() { declare i256 @llvm.ctpop.i256(i256 %src) define i256 @test_ctpop() { -; CHECK: @test_ctpop +; CHECK-LABEL: @test_ctpop( %x = call i256 @llvm.ctpop.i256(i256 10) ret i256 %x ; CHECK-NEXT: ret i256 2 @@ -40,7 +40,7 @@ define i256 @test_ctpop() { declare float @fabs(float %x) define float @test_fabs_libcall() { -; CHECK: @test_fabs_libcall +; CHECK-LABEL: @test_fabs_libcall( %x = call float @fabs(float -42.0) ; This is still a real function call, so instsimplify won't nuke it -- other @@ -61,7 +61,7 @@ declare float @llvm.nearbyint.f32(float) nounwind readnone ; Test idempotent intrinsics define float @test_idempotence(float %a) { -; CHECK: @test_idempotence +; CHECK-LABEL: @test_idempotence( ; CHECK: fabs ; CHECK-NOT: fabs |