llvm-6502/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll

8 lines
120 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc
long %test(long %A) {
%B = cast long %A to sbyte
%C = cast sbyte %B to long
ret long %C
}