blob: 805528cf2efd688b5632c69865f711504fd2a907 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=ppc32 | grep extsb
2; RUN: llc < %s -march=ppc32 | grep extsh
Chris Lattnere0170df2007-01-04 22:22:07 +00003
Reid Spencere3ff5ad2007-01-26 08:25:06 +00004define i32 @p1(i8 %c, i16 %s) {
Chris Lattnere0170df2007-01-04 22:22:07 +00005entry:
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}