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
This commit is contained in:
Chris Lattner 2005-12-12 22:27:22 +00:00
parent d160d48a2b
commit a92dabb259

View File

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