diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-27 20:39:19 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-27 20:39:19 +0000 |
commit | a9390a4d5f5d568059a80970d22194b165d097a7 (patch) | |
tree | 1f070db88cf855be43bfe5eb228516b57cbb3489 /test/Transforms/ScalarRepl | |
parent | 100a371725ddc2565b5262ce9047dcd06ae95854 (diff) |
Stop emitting instructions with the name "tmp" they eat up memory and have to be uniqued, without any benefit.
If someone prefers %tmp42 to %42, run instnamer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ScalarRepl')
-rw-r--r-- | test/Transforms/ScalarRepl/vector_promote.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Transforms/ScalarRepl/vector_promote.ll b/test/Transforms/ScalarRepl/vector_promote.ll index c51ef109c0..e8919abddb 100644 --- a/test/Transforms/ScalarRepl/vector_promote.ll +++ b/test/Transforms/ScalarRepl/vector_promote.ll @@ -110,7 +110,7 @@ define float @test7(<4 x float> %x) { ; CHECK-NOT: alloca ; CHECK: bitcast <4 x float> %x to <2 x double> ; CHECK-NEXT: extractelement <2 x double> -; CHECK-NEXT: bitcast double %tmp4 to <2 x float> +; CHECK-NEXT: bitcast double %2 to <2 x float> ; CHECK-NEXT: extractelement <4 x float> } @@ -125,7 +125,7 @@ define void @test8(<4 x float> %x, <2 x float> %y) { ; CHECK: bitcast <4 x float> %x to <2 x double> ; CHECK-NEXT: bitcast <2 x float> %y to double ; CHECK-NEXT: insertelement <2 x double> -; CHECK-NEXT: bitcast <2 x double> %tmp2 to <4 x float> +; CHECK-NEXT: bitcast <2 x double> %3 to <4 x float> } define i256 @test9(<4 x i256> %x) { @@ -140,7 +140,7 @@ define i256 @test9(<4 x i256> %x) { ; CHECK-NOT: alloca ; CHECK: bitcast <4 x i256> %x to <2 x i512> ; CHECK-NEXT: extractelement <2 x i512> -; CHECK-NEXT: bitcast i512 %tmp4 to <2 x i256> +; CHECK-NEXT: bitcast i512 %2 to <2 x i256> ; CHECK-NEXT: extractelement <4 x i256> } @@ -155,7 +155,7 @@ define void @test10(<4 x i256> %x, <2 x i256> %y) { ; CHECK: bitcast <4 x i256> %x to <2 x i512> ; CHECK-NEXT: bitcast <2 x i256> %y to i512 ; CHECK-NEXT: insertelement <2 x i512> -; CHECK-NEXT: bitcast <2 x i512> %tmp2 to <4 x i256> +; CHECK-NEXT: bitcast <2 x i512> %3 to <4 x i256> } %union.v = type { <2 x i64> } @@ -245,7 +245,7 @@ entry: ret void ; CHECK: @test15 ; CHECK-NOT: alloca -; CHECK: shufflevector <4 x i64> %tmpV2, <4 x i64> undef, <3 x i32> <i32 0, i32 1, i32 2> +; CHECK: shufflevector <4 x i64> %tmpV1, <4 x i64> undef, <3 x i32> <i32 0, i32 1, i32 2> } define <4 x float> @test16(<4 x float> %x, i64 %y0, i64 %y1) { |