From cfab3da46e1e8e9ed4fafa018e0d28bb5913dde2 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Tue, 19 Feb 2008 08:07:33 +0000 Subject: Remove llvm-upgrade and update tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47325 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/shl_sext.ll | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'test/CodeGen/PowerPC/shl_sext.ll') diff --git a/test/CodeGen/PowerPC/shl_sext.ll b/test/CodeGen/PowerPC/shl_sext.ll index af18338..61e5cdb 100644 --- a/test/CodeGen/PowerPC/shl_sext.ll +++ b/test/CodeGen/PowerPC/shl_sext.ll @@ -1,17 +1,18 @@ ; This test should not contain a sign extend -; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep extsb +; RUN: llvm-as < %s | llc -march=ppc32 | not grep extsb -int %test(uint %mode.0.i.0) { - %tmp.79 = cast uint %mode.0.i.0 to sbyte ; [#uses=1] - %tmp.80 = cast sbyte %tmp.79 to int ; [#uses=1] - %tmp.81 = shl int %tmp.80, ubyte 24 ; [#uses=1] - ret int %tmp.81 +define i32 @test(i32 %mode.0.i.0) { + %tmp.79 = trunc i32 %mode.0.i.0 to i8 ; [#uses=1] + %tmp.80 = sext i8 %tmp.79 to i32 ; [#uses=1] + %tmp.81 = shl i32 %tmp.80, 24 ; [#uses=1] + ret i32 %tmp.81 } -int %test2(uint %mode.0.i.0) { - %tmp.79 = cast uint %mode.0.i.0 to sbyte ; [#uses=1] - %tmp.80 = cast sbyte %tmp.79 to int ; [#uses=1] - %tmp.81 = shl int %tmp.80, ubyte 16 ; [#uses=1] - %tmp.82 = and int %tmp.81, 16711680 - ret int %tmp.82 +define i32 @test2(i32 %mode.0.i.0) { + %tmp.79 = trunc i32 %mode.0.i.0 to i8 ; [#uses=1] + %tmp.80 = sext i8 %tmp.79 to i32 ; [#uses=1] + %tmp.81 = shl i32 %tmp.80, 16 ; [#uses=1] + %tmp.82 = and i32 %tmp.81, 16711680 ; [#uses=1] + ret i32 %tmp.82 } + -- cgit v1.1