fixed lots of warnings in testprograms
[libfirm] / ir / be / test / structcall.c
index e0c8f52..250b925 100644 (file)
@@ -3,7 +3,7 @@ struct A {
   int b;
 };
 
-int test(struct A arg) {
+static int test(struct A arg) {
   return arg.a + arg.b;
 }