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