llvm-project/llvm/test/Regression/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll

8 lines
120 B
LLVM

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