1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/CodeGen/PowerPC/2007-01-04-ArgExtension.ll

11 lines
346 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=ppc32 | grep extsb
; RUN: llc < %s -march=ppc32 | grep extsh
2007-01-04 23:22:07 +01:00
define i32 @p1(i8 %c, i16 %s) {
2007-01-04 23:22:07 +01:00
entry:
%tmp = sext i8 %c to i32 ; <i32> [#uses=1]
%tmp1 = sext i16 %s to i32 ; <i32> [#uses=1]
%tmp2 = add i32 %tmp1, %tmp ; <i32> [#uses=1]
ret i32 %tmp2
}