diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
commit | aceba31b7a04fd28680209b2677915378877bc13 (patch) | |
tree | 14ccb6bb44f8ffb397c928e23771b50c43688ea4 /test/CodeGen/X86/vec_shuffle-22.ll | |
parent | ba25f0924ef3be887fb67ed6a66f3dee77461f44 (diff) |
Delete useless trailing semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vec_shuffle-22.ll')
-rw-r--r-- | test/CodeGen/X86/vec_shuffle-22.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/vec_shuffle-22.ll b/test/CodeGen/X86/vec_shuffle-22.ll index 1cf37d4b9b..6807e4d639 100644 --- a/test/CodeGen/X86/vec_shuffle-22.ll +++ b/test/CodeGen/X86/vec_shuffle-22.ll @@ -9,7 +9,7 @@ define <4 x float> @t1(<4 x float> %a) nounwind { define <4 x i32> @t2(<4 x i32>* %a) nounwind { ; CHECK: pshufd ; CHECK: ret - %tmp1 = load <4 x i32>* %a; + %tmp1 = load <4 x i32>* %a %tmp2 = shufflevector <4 x i32> %tmp1, <4 x i32> undef, <4 x i32> < i32 0, i32 1, i32 0, i32 1 > ; <<4 x i32>> [#uses=1] ret <4 x i32> %tmp2 } |