Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
ba4733d901b1c2b994f66707657342b8c81c92bc
/
.
/
test
/
CodeGen
/
CBackend
/
2003-05-13-VarArgFunction.ll
blob: 45638a08833479f12ff3e1d2f6b5116fe70b1a1b [
file
] [
log
] [
blame
]
; RUN: llvm-as < %s | llc -march=c
; 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
}