New testcase

llvm-svn: 6337
This commit is contained in:
Chris Lattner 2003-05-26 23:41:13 +00:00
parent e3c5e88347
commit adf7b998bd
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
; RUN: as < %s | opt -instcombine | dis | grep 4294967295
ulong %test(ulong %Val) {
%tmp.3 = cast ulong %Val to uint ; <uint> [#uses=1]
%tmp.8 = cast uint %tmp.3 to ulong ; <ulong> [#uses=1]
ret ulong %tmp.8
}