Merge branch 'master' into msp430
[llvm/msp430.git] / test / CodeGen / CBackend / 2003-05-13-VarArgFunction.ll
blob2a4e839d737c70bdd8a7e1a6f552685be223f9f6
1 ; RUN: llvm-as < %s | llc -march=c
3 ; This testcase breaks the C backend, because gcc doesn't like (...) functions
4 ; with no arguments at all.
6 define void @test(i64 %Ptr) {
7         %P = inttoptr i64 %Ptr to void (...)*           ; <void (...)*> [#uses=1]
8         call void (...)* %P( i64 %Ptr )
9         ret void