implement function calling of functions with up to 4 arguments
[oota-llvm.git] / test / CodeGen / ARM / call.ll
1 ; RUN: llvm-as < %s | llc -march=arm
2 void %f() {
3 entry:
4         call void %g( int 1, int 2, int 3, int 4 )
5         ret void
6 }
7
8 declare void %g(int, int, int, int)