blob: 27442aab613311e2c5c46a7c13d7d8a67032d666 [file] [log] [blame]
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001; Tests to make sure elimination of casts is working correctly
2; RUN: llvm-as < %s | opt -instcombine -disable-output &&
3; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast '' '%c1.*'
4
5long %test_sext_zext(short %A) {
6 %c1 = zext short %A to uint
7 %c2 = sext uint %c1 to long
8 ret long %c2
9}