2007-01-05 18:31:56 +00:00
|
|
|
; RUN: llvm-as < %s | llc -march=ppc32 | not grep rlwin
|
2005-10-10 21:21:36 +00:00
|
|
|
|
2007-01-26 08:25:06 +00:00
|
|
|
define void @test(i8* %P) {
|
2007-01-05 18:31:56 +00:00
|
|
|
%W = load i8* %P
|
2007-02-02 02:16:23 +00:00
|
|
|
%X = shl i8 %W, 1
|
2007-01-05 18:31:56 +00:00
|
|
|
%Y = add i8 %X, 2
|
|
|
|
%Z = and i8 %Y, 254 ; dead and
|
|
|
|
store i8 %Z, i8* %P
|
2005-10-10 21:21:36 +00:00
|
|
|
ret void
|
|
|
|
}
|
2006-02-27 00:20:23 +00:00
|
|
|
|
2007-07-19 23:13:04 +00:00
|
|
|
define i16 @test2(i16 zeroext %crc) zeroext {
|
2007-01-05 18:31:56 +00:00
|
|
|
; No and's should be needed for the i16s here.
|
2007-02-02 02:16:23 +00:00
|
|
|
%tmp.1 = lshr i16 %crc, 1
|
2007-01-05 18:31:56 +00:00
|
|
|
%tmp.7 = xor i16 %tmp.1, 40961
|
|
|
|
ret i16 %tmp.7
|
2006-02-27 00:20:23 +00:00
|
|
|
}
|
|
|
|
|