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-11-13-ConstExprCastCall.ll
blob
aa5b79b3a9b95e7158f291142f9002a4182d78f2
1
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep call | not grep cast
2
3
declare void %free(sbyte*)
4
5
void %test(int* %X) {
6
call int (...)* cast (void (sbyte*)* %free to int (...)*)(int * %X)
7
ret void
8
}
9