summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/2007-01-04-ArgExtension.ll
blob: 7b9aae58f555d214e637cab51ec9243f0c425769 (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | grep extsb
; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | grep extsh

define i32 @p1(i8 %c, i16 %s) {
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
}