1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Testcase for a problem that reid ran into

llvm-svn: 24676
This commit is contained in:
Chris Lattner 2005-12-12 22:27:22 +00:00
parent 6c9f9ea7ec
commit 31de4bc6e3

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
}