blob: 0491de93495bae602560db1914e213a0586fd143 [file] [log] [blame]
Chris Lattner0f758492005-01-01 16:14:46 +00001; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep ubyte
2
3int %test1(uint %X) {
4 %Y = cast uint %X to ubyte ;; Turn into an AND
5 %Z = cast ubyte %Y to int
6 ret int %Z
7}
8