blob: cd1f1f827bd6c56c2cfb43b2ecb92d4dcba82272 [file] [log] [blame]
Reid Spencer6c38f0b2006-11-27 01:05:10 +00001; Tests to make sure elimination of casts is working correctly
Reid Spencer91948d42007-04-14 20:13:02 +00002; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
3; RUN: notcast {} {%c1.*}
Reid Spencer6c38f0b2006-11-27 01:05:10 +00004
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}