xref: /llvm-project/llvm/test/CodeGen/PowerPC/2007-01-04-ArgExtension.ll (revision e2d2ce9ff1fabe751d3990af4bfa82cbf4998d41)
1; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | grep extsb
2; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | grep extsh
3
4define i32 @p1(i8 %c, i16 %s) {
5entry:
6        %tmp = sext i8 %c to i32                ; <i32> [#uses=1]
7        %tmp1 = sext i16 %s to i32              ; <i32> [#uses=1]
8        %tmp2 = add i32 %tmp1, %tmp             ; <i32> [#uses=1]
9        ret i32 %tmp2
10}
11