diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-09 00:32:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-09 00:32:10 +0000 |
commit | 3ed815a3a57e037fcc2b63f96ee72ddaf066ca63 (patch) | |
tree | 15e2dcf90acc5c3f7c139bb77b9d21dfd7225194 | |
parent | 031e04b7a390acde3681555cc667b46e71bcdd00 (diff) | |
download | bcm5719-llvm-3ed815a3a57e037fcc2b63f96ee72ddaf066ca63.tar.gz bcm5719-llvm-3ed815a3a57e037fcc2b63f96ee72ddaf066ca63.zip |
upgrade this test
llvm-svn: 48062
-rw-r--r-- | llvm/test/CodeGen/PowerPC/2004-11-29-ShrCrash.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/PowerPC/2004-11-29-ShrCrash.ll b/llvm/test/CodeGen/PowerPC/2004-11-29-ShrCrash.ll index e2a00d1e6e0..70f294a78d8 100644 --- a/llvm/test/CodeGen/PowerPC/2004-11-29-ShrCrash.ll +++ b/llvm/test/CodeGen/PowerPC/2004-11-29-ShrCrash.ll @@ -1,6 +1,6 @@ -; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 - -void %main() { - %tr1 = shr uint 1, ubyte 0 +; RUN: llvm-as < %s | llc -march=ppc32 +define void @test() { + %tr1 = lshr i32 1, 0 ; <i32> [#uses=0] ret void } + |