llvm-6502/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll
Chris Lattner a92dabb259 Testcase for a problem that reid ran into
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24676 91177308-0d34-0410-b5e6-96231b3b80d8
2005-12-12 22:27:22 +00:00

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
}