blob: d9c22ffd180bb78442eb4f0f92c9cf400a8de7b6 [file] [log] [blame]
Tanya Lattner9bc243b2008-03-01 07:38:40 +00001; RUN: llvm-as < %s | llvm-dis > %t1.ll
Tanya Lattner3f7706b2004-11-07 06:08:43 +00002; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
Tanya Lattner9bc243b2008-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}
Chris Lattner09083092001-07-08 04:57:15 +000012