From 8b2b8a18354546d534b72f912153a3252ab4b857 Mon Sep 17 00:00:00 2001 From: Stephen Lin Date: Sun, 14 Jul 2013 06:24:09 +0000 Subject: Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function definitions for more informative error messages. No functionality change and all updated tests passed locally. This update was done with the following bash script: find test/CodeGen -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc.*debug" $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 sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP mv $TEMP $NAME fi done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186280 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/SystemZ/fp-move-06.ll | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'test/CodeGen/SystemZ/fp-move-06.ll') diff --git a/test/CodeGen/SystemZ/fp-move-06.ll b/test/CodeGen/SystemZ/fp-move-06.ll index b660c2a..da67691 100644 --- a/test/CodeGen/SystemZ/fp-move-06.ll +++ b/test/CodeGen/SystemZ/fp-move-06.ll @@ -4,7 +4,7 @@ ; Test the low end of the STE range. define void @f1(float *%ptr, float %val) { -; CHECK: f1: +; CHECK-LABEL: f1: ; CHECK: ste %f0, 0(%r2) ; CHECK: br %r14 store float %val, float *%ptr @@ -13,7 +13,7 @@ define void @f1(float *%ptr, float %val) { ; Test the high end of the STE range. define void @f2(float *%src, float %val) { -; CHECK: f2: +; CHECK-LABEL: f2: ; CHECK: ste %f0, 4092(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 1023 @@ -23,7 +23,7 @@ define void @f2(float *%src, float %val) { ; Check the next word up, which should use STEY instead of STE. define void @f3(float *%src, float %val) { -; CHECK: f3: +; CHECK-LABEL: f3: ; CHECK: stey %f0, 4096(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 1024 @@ -33,7 +33,7 @@ define void @f3(float *%src, float %val) { ; Check the high end of the aligned STEY range. define void @f4(float *%src, float %val) { -; CHECK: f4: +; CHECK-LABEL: f4: ; CHECK: stey %f0, 524284(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 131071 @@ -44,7 +44,7 @@ define void @f4(float *%src, float %val) { ; Check the next word up, which needs separate address logic. ; Other sequences besides this one would be OK. define void @f5(float *%src, float %val) { -; CHECK: f5: +; CHECK-LABEL: f5: ; CHECK: agfi %r2, 524288 ; CHECK: ste %f0, 0(%r2) ; CHECK: br %r14 @@ -55,7 +55,7 @@ define void @f5(float *%src, float %val) { ; Check the high end of the negative aligned STEY range. define void @f6(float *%src, float %val) { -; CHECK: f6: +; CHECK-LABEL: f6: ; CHECK: stey %f0, -4(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 -1 @@ -65,7 +65,7 @@ define void @f6(float *%src, float %val) { ; Check the low end of the STEY range. define void @f7(float *%src, float %val) { -; CHECK: f7: +; CHECK-LABEL: f7: ; CHECK: stey %f0, -524288(%r2) ; CHECK: br %r14 %ptr = getelementptr float *%src, i64 -131072 @@ -76,7 +76,7 @@ define void @f7(float *%src, float %val) { ; Check the next word down, which needs separate address logic. ; Other sequences besides this one would be OK. define void @f8(float *%src, float %val) { -; CHECK: f8: +; CHECK-LABEL: f8: ; CHECK: agfi %r2, -524292 ; CHECK: ste %f0, 0(%r2) ; CHECK: br %r14 @@ -87,7 +87,7 @@ define void @f8(float *%src, float %val) { ; Check that STE allows an index. define void @f9(i64 %src, i64 %index, float %val) { -; CHECK: f9: +; CHECK-LABEL: f9: ; CHECK: ste %f0, 4092({{%r3,%r2|%r2,%r3}}) ; CHECK: br %r14 %add1 = add i64 %src, %index @@ -99,7 +99,7 @@ define void @f9(i64 %src, i64 %index, float %val) { ; Check that STEY allows an index. define void @f10(i64 %src, i64 %index, float %val) { -; CHECK: f10: +; CHECK-LABEL: f10: ; CHECK: stey %f0, 4096({{%r3,%r2|%r2,%r3}}) ; CHECK: br %r14 %add1 = add i64 %src, %index -- cgit v1.1