fix some bugs affecting functions with no 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         call void %h()
6         ret void
7 }
8
9 declare void %g(int, int, int, int)
10 declare void %h()