1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/CodeGen/Generic/2005-12-12-ExpandSextInreg.ll
Tanya Lattner aeb9bb8ba4 Remove llvm-upgrade and update tests.
llvm-svn: 47296
2008-02-19 01:41:04 +00:00

8 lines
190 B
LLVM

; RUN: llvm-as < %s | llc
define i64 @test(i64 %A) {
%B = trunc i64 %A to i8 ; <i8> [#uses=1]
%C = sext i8 %B to i64 ; <i64> [#uses=1]
ret i64 %C
}