diff options
author | Cameron Zwarich <zwarich@apple.com> | 2011-03-29 05:19:52 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2011-03-29 05:19:52 +0000 |
commit | 9827b78b51f285e90c2b1e5add9b28d10c88595c (patch) | |
tree | 8874e9292f3420d47b8f6188b42934c3be18eaf1 /test/Transforms/ScalarRepl/vector_promote.ll | |
parent | ad7d8a598b17452138c20f7a7acdcd7e1f0053d8 (diff) |
Do some simple copy propagation through integer loads and stores when promoting
vector types. This helps a lot with inlined functions when using the ARM soft
float ABI. Fixes <rdar://problem/9184212>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128453 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ScalarRepl/vector_promote.ll')
-rw-r--r-- | test/Transforms/ScalarRepl/vector_promote.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/ScalarRepl/vector_promote.ll b/test/Transforms/ScalarRepl/vector_promote.ll index c51c9247f5..ef701c621d 100644 --- a/test/Transforms/ScalarRepl/vector_promote.ll +++ b/test/Transforms/ScalarRepl/vector_promote.ll @@ -94,7 +94,7 @@ define i64 @test6(<2 x float> %X) { %tmp = load i64* %P ret i64 %tmp ; CHECK: @test6 -; CHECK: bitcast <2 x float> %X to <1 x i64> +; CHECK: bitcast <2 x float> %X to i64 ; CHECK: ret i64 } |