blob: 6c794a3e3f2848aca96011028171d1203647f4a9 [file] [log] [blame]
Chris Lattnerda15d4b2005-01-01 16:14:46 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'and int %Y, 8'
2
3int %test1(ubyte %X) {
4 %Y = cast ubyte %X to int
5 %Z = and int %Y, 65544 ;; Prune this to and Y, 8
6 ret int %Z
7}
8