Chris Lattner | 0f75849 | 2005-01-01 16:14:46 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep ubyte |
2 | |||||
3 | int %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 |