blob: af18338f4b2063808f2940459ccc5727ff079211 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; This test should not contain a sign extend
2; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 | not grep extsb
3
4int %test(uint %mode.0.i.0) {
5 %tmp.79 = cast uint %mode.0.i.0 to sbyte ; <sbyte> [#uses=1]
6 %tmp.80 = cast sbyte %tmp.79 to int ; <int> [#uses=1]
7 %tmp.81 = shl int %tmp.80, ubyte 24 ; <int> [#uses=1]
8 ret int %tmp.81
9}
10
11int %test2(uint %mode.0.i.0) {
12 %tmp.79 = cast uint %mode.0.i.0 to sbyte ; <sbyte> [#uses=1]
13 %tmp.80 = cast sbyte %tmp.79 to int ; <int> [#uses=1]
14 %tmp.81 = shl int %tmp.80, ubyte 16 ; <int> [#uses=1]
15 %tmp.82 = and int %tmp.81, 16711680
16 ret int %tmp.82
17}