mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 03:32:21 +00:00
8d248c51e9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5974 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
183 B
LLVM
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
|
|
}
|