Files
llvm-6502/test/Transforms/LevelRaise/2003-05-01-CallCast.ll
Reid Spencer f7c8a97472 For PR950:
Use the notcast script in preparation for 12 cast instructions.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31703 91177308-0d34-0410-b5e6-96231b3b80d8
2006-11-13 16:12:25 +00:00

9 lines
140 B
LLVM

; RUN: llvm-as < %s | opt -raise | llvm-dis | notcast
void %test(...) { ret void }
void %caller() {
call void (...) *%test()
ret void
}