diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2010-01-31 04:40:45 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2010-01-31 04:40:45 +0000 |
commit | 690c7f4dfdc0a0ed6bd958e1b1ed5c45495ee3a6 (patch) | |
tree | d03b305cc8392d0489635f15aa33fea1cc76dc65 /llvm/test | |
parent | a2cc2875fca1945b4f4d6bf663920c40f5a79d69 (diff) | |
download | bcm5719-llvm-690c7f4dfdc0a0ed6bd958e1b1ed5c45495ee3a6.tar.gz bcm5719-llvm-690c7f4dfdc0a0ed6bd958e1b1ed5c45495ee3a6.zip |
Remove test which is no longer relevant.
llvm-svn: 94944
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2007-03-27-PR1280.ll | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/test/Transforms/InstCombine/2007-03-27-PR1280.ll b/llvm/test/Transforms/InstCombine/2007-03-27-PR1280.ll deleted file mode 100644 index 7700c7dd8a6..00000000000 --- a/llvm/test/Transforms/InstCombine/2007-03-27-PR1280.ll +++ /dev/null @@ -1,15 +0,0 @@ -; PR1280 - we should be able to reduce this function to a trunc/sext but it -; would involve using a bit width (24) that doesn't match a size that -; the back end can handle. This test makes sure that such a transform -; is not done. It should be removed when code gen supports "funny" -; bit widths. - -; RUN: opt < %s -instcombine -S | grep {add i49.*-8388608} - -define i49 @test5(i49 %x) { - ;; If we have ADD(XOR(AND(X, 0xFF), 0x80), 0xF..F80), it's a sext. - %X = and i49 %x, 16777215 ; 0x0000000ffffff - %tmp.2 = xor i49 %X, 8388608 ; 0x0000000800000 - %tmp.4 = add i49 %tmp.2, -8388608 ; 0x1FFFFFF800000 - ret i49 %tmp.4 -} |