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 | c1c7a1309c039ec8539e3c851f332825d8855223 (patch) | |
tree | f02719af3762ca8753eb422a365ef33ddf23f0c4 /llvm/test/Transforms/BBVectorize/simple-ldstr.ll | |
parent | 2e105ff8b789f517c3e19de275775df2d6da4aa0 (diff) | |
download | bcm5719-llvm-c1c7a1309c039ec8539e3c851f332825d8855223.tar.gz bcm5719-llvm-c1c7a1309c039ec8539e3c851f332825d8855223.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
llvm-svn: 186268
Diffstat (limited to 'llvm/test/Transforms/BBVectorize/simple-ldstr.ll')
-rw-r--r-- | llvm/test/Transforms/BBVectorize/simple-ldstr.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/Transforms/BBVectorize/simple-ldstr.ll b/llvm/test/Transforms/BBVectorize/simple-ldstr.ll index 8e51d297e8e..558f8b38d79 100644 --- a/llvm/test/Transforms/BBVectorize/simple-ldstr.ll +++ b/llvm/test/Transforms/BBVectorize/simple-ldstr.ll @@ -17,7 +17,7 @@ entry: %arrayidx5 = getelementptr inbounds double* %c, i64 1 store double %mul5, double* %arrayidx5, align 8 ret void -; CHECK: @test1 +; CHECK-LABEL: @test1( ; CHECK: %i0.v.i0 = bitcast double* %a to <2 x double>* ; CHECK: %i1.v.i0 = bitcast double* %b to <2 x double>* ; CHECK: %i0 = load <2 x double>* %i0.v.i0, align 8 @@ -26,7 +26,7 @@ entry: ; CHECK: %0 = bitcast double* %c to <2 x double>* ; CHECK: store <2 x double> %mul, <2 x double>* %0, align 8 ; CHECK: ret void -; CHECK-AO: @test1 +; CHECK-AO-LABEL: @test1( ; CHECK-AO-NOT: <2 x double> } @@ -49,7 +49,7 @@ entry: %arrayidx5 = getelementptr inbounds double* %c, i64 1 store double %mul5, double* %arrayidx5, align 8 ret void -; CHECK: @test2 +; CHECK-LABEL: @test2( ; CHECK: %i0f.v.i0 = bitcast float* %a to <2 x float>* ; CHECK: %i1f.v.i0 = bitcast float* %b to <2 x float>* ; CHECK: %i0f = load <2 x float>* %i0f.v.i0, align 4 @@ -60,7 +60,7 @@ entry: ; CHECK: %0 = bitcast double* %c to <2 x double>* ; CHECK: store <2 x double> %mul, <2 x double>* %0, align 8 ; CHECK: ret void -; CHECK-AO: @test2 +; CHECK-AO-LABEL: @test2( ; CHECK-AO-NOT: <2 x double> } @@ -81,7 +81,7 @@ entry: %arrayidx5 = getelementptr inbounds float* %c, i64 1 store float %mul5f, float* %arrayidx5, align 4 ret void -; CHECK: @test3 +; CHECK-LABEL: @test3( ; CHECK: %i0.v.i0 = bitcast double* %a to <2 x double>* ; CHECK: %i1.v.i0 = bitcast double* %b to <2 x double>* ; CHECK: %i0 = load <2 x double>* %i0.v.i0, align 8 @@ -91,7 +91,7 @@ entry: ; CHECK: %0 = bitcast float* %c to <2 x float>* ; CHECK: store <2 x float> %mulf, <2 x float>* %0, align 8 ; CHECK: ret void -; CHECK-AO: @test3 +; CHECK-AO-LABEL: @test3( ; CHECK-AO: %i0 = load double* %a, align 8 ; CHECK-AO: %i1 = load double* %b, align 8 ; CHECK-AO: %arrayidx3 = getelementptr inbounds double* %a, i64 1 @@ -134,9 +134,9 @@ if.then: if.end: ret void -; CHECK: @test4 +; CHECK-LABEL: @test4( ; CHECK-NOT: <2 x double> -; CHECK-AO: @test4 +; CHECK-AO-LABEL: @test4( ; CHECK-AO-NOT: <2 x double> } @@ -155,7 +155,7 @@ entry: store double %mul5, double* %arrayidx5, align 8 store double %mul, double* %c, align 4 ret void -; CHECK: @test5 +; CHECK-LABEL: @test5( ; CHECK: %i0.v.i0 = bitcast double* %a to <2 x double>* ; CHECK: %i1.v.i0 = bitcast double* %b to <2 x double>* ; CHECK: %i0 = load <2 x double>* %i0.v.i0, align 8 @@ -164,7 +164,7 @@ entry: ; CHECK: %0 = bitcast double* %c to <2 x double>* ; CHECK: store <2 x double> %mul, <2 x double>* %0, align 4 ; CHECK: ret void -; CHECK-AO: @test5 +; CHECK-AO-LABEL: @test5( ; CHECK-AO-NOT: <2 x double> } |