blob: 592b8a172f8e1fcb93a16f3d6716f99744e77f0f [file] [log] [blame]
Dan Gohman18800922009-09-11 18:01:28 +00001; RUN: opt < %s -instcombine -S | \
Reid Spencer91948d42007-04-14 20:13:02 +00002; RUN: grep {and i32 %Y, 8}
Chris Lattnerda15d4b2005-01-01 16:14:46 +00003
Tanya Lattner5640bd12008-03-01 09:15:35 +00004define i32 @test1(i8 %X) {
5 %Y = zext i8 %X to i32 ; <i32> [#uses=1]
6 %Z = and i32 %Y, 65544 ; <i32> [#uses=1]
7 ret i32 %Z
Chris Lattnerda15d4b2005-01-01 16:14:46 +00008}
9
Tanya Lattner5640bd12008-03-01 09:15:35 +000010