new testcase
[oota-llvm.git] / test / CodeGen / Generic / 2005-12-12-ExpandSextInreg.ll
1 ; RUN: llvm-as < %s | llc
2
3 long %test(long %A) {
4         %B = cast long %A to sbyte
5         %C = cast sbyte %B to long
6         ret long %C
7 }