repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added the ability to xfail based on llvmgcc version
[llvm-complete.git]
/
test
/
Transforms
/
InstCombine
/
2003-05-26-CastMiscompile.ll
blob
218a536ef63f111059a504a571c0b891fa40961c
1
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 4294967295
2
3
ulong %test(ulong %Val) {
4
%tmp.3 = cast ulong %Val to uint ; <uint> [#uses=1]
5
%tmp.8 = cast uint %tmp.3 to ulong ; <ulong> [#uses=1]
6
ret ulong %tmp.8
7
}