llvm-6502/test/Transforms/LevelRaise/2003-05-01-CallCast.ll
2003-05-01 21:02:35 +00:00

12 lines
183 B
LLVM

; RUN: if as < %s | opt -raise | dis | grep cast
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
void %test(...) { ret void }
void %caller() {
call void (...) *%test()
ret void
}