diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-20 21:19:36 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-20 21:19:36 +0000 |
commit | cef29cce4633c8276db97033b23451aa0bc731af (patch) | |
tree | b3724393dd5daee49bab0cfb0470d5457b2c13ea /test | |
parent | f0f1202b803a92f6caae3eb18ae55f783b1241f8 (diff) | |
download | external_llvm-cef29cce4633c8276db97033b23451aa0bc731af.zip external_llvm-cef29cce4633c8276db97033b23451aa0bc731af.tar.gz external_llvm-cef29cce4633c8276db97033b23451aa0bc731af.tar.bz2 |
Oops, commit the version of this test that actually works.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/sext-misc.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/sext-misc.ll b/test/Transforms/InstCombine/sext-misc.ll index d49c63c..076f595 100644 --- a/test/Transforms/InstCombine/sext-misc.ll +++ b/test/Transforms/InstCombine/sext-misc.ll @@ -44,7 +44,7 @@ define i64 @voo(i32 %x) { ret i64 %s } define i32 @woo(i8 %a, i32 %f, i1 %p, i32* %z) { - %d = ashr i32 %f, 24 + %d = lshr i32 %f, 24 %e = select i1 %p, i32 %d, i32 0 %s = trunc i32 %e to i16 %n = sext i16 %s to i32 |