blob: d9c22ffd180bb78442eb4f0f92c9cf400a8de7b6 [file] [log] [blame]
Tanya Lattnerfc887452008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Tanya Lattnerfc887452008-03-01 07:38:40 +00005define i16 @FunFunc(i64 %x, i8 %z) {
6bb0:
7 %cast110 = sext i8 %z to i16 ; <i16> [#uses=1]
8 %cast10 = trunc i64 %x to i16 ; <i16> [#uses=1]
9 %reg109 = add i16 %cast110, %cast10 ; <i16> [#uses=1]
10 ret i16 %reg109
11}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000012