diff options
author | Nadav Rotem <nadav.rotem@intel.com> | 2011-08-23 17:56:54 +0000 |
---|---|---|
committer | Nadav Rotem <nadav.rotem@intel.com> | 2011-08-23 17:56:54 +0000 |
commit | 46634f5f920e7dbea37c3804dbd86786d6a9ce12 (patch) | |
tree | a0be230612f9170b7f9a5bb4b0304757b355840e /test/Transforms/InstCombine | |
parent | 82265a2c72b0f2d0daeab4985c9509d8405f51ef (diff) | |
download | external_llvm-46634f5f920e7dbea37c3804dbd86786d6a9ce12.zip external_llvm-46634f5f920e7dbea37c3804dbd86786d6a9ce12.tar.gz external_llvm-46634f5f920e7dbea37c3804dbd86786d6a9ce12.tar.bz2 |
Fix a typo in the test from the previous commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine')
-rw-r--r-- | test/Transforms/InstCombine/bitcast.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/InstCombine/bitcast.ll b/test/Transforms/InstCombine/bitcast.ll index 899cb49..8f6ae7d 100644 --- a/test/Transforms/InstCombine/bitcast.ll +++ b/test/Transforms/InstCombine/bitcast.ll @@ -130,10 +130,10 @@ define i64 @All11(i64 %in) { } -define i64 @All111(i32 %in) { - %out = and i32 %in, xor (i64 bitcast (<1 x float> bitcast (i32 -1 to <1 x float>) to i32), i32 -1) +define i32 @All111(i32 %in) { + %out = and i32 %in, xor (i32 bitcast (<1 x float> bitcast (i32 -1 to <1 x float>) to i32), i32 -1) ret i32 %out -; CHECK: @All11 +; CHECK: @All111 ; CHECK: ret i32 0 } |