make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / CodeGen / CBackend / 2003-05-13-VarArgFunction.ll
bloba42dc27a1e70f09eab29e0edfd33b2f4fcd52ac2
1 ; RUN: llc < %s -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