mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
406680c2a8
llvm-svn: 6171
9 lines
211 B
LLVM
9 lines
211 B
LLVM
; This testcase breaks the C backend, because gcc doesn't like (...) functions
|
|
; with no arguments at all.
|
|
|
|
void %test(long %Ptr) {
|
|
%P = cast long %Ptr to void(...) *
|
|
call void(...)* %P(long %Ptr)
|
|
ret void
|
|
}
|