2007-04-14 20:13:02 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
|
|
|
|
; RUN: not grep ubyte
|
2005-01-01 16:14:46 +00:00
|
|
|
|
|
|
|
int %test1(uint %X) {
|
|
|
|
%Y = cast uint %X to ubyte ;; Turn into an AND
|
|
|
|
%Z = cast ubyte %Y to int
|
|
|
|
ret int %Z
|
|
|
|
}
|
|
|
|
|