| Chris Lattner | 5898eff | 2006-02-13 22:31:50 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | opt -instcombine -disable-output && | 
| 2 | ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep undef | ||||
| 3 | |||||
| 4 | int %test(sbyte %A) { | ||||
| 5 | %B = cast sbyte %A to int | ||||
| 6 | %C = shr int %B, ubyte 8 | ||||
| 7 | ret int %C | ||||
| 8 | } | ||||
| 9 | |||||