codegen: handle exceptions of a method
[mate.git] / tests / CallConv3.java
index d5fa6da5ead746c8e286bf344ce004160931e913..1df0d024f753325f0d926ff865bc6f62bad6482f 100644 (file)
@@ -2,10 +2,10 @@ package tests;
 
 public class CallConv3 {
        public static void main(String []args) {
-               manyVars_A(0x1000, 0x300, 0x30, 0x7);
-               manyVars_B(0x1000, 0x300, 0x30, 0x7);
-               manyVars_C(0x1000, 0x300, 0x30, 0x7);
-               manyVars_D(0x1000, 0x300, 0x30, 0x7);
+               System.out.printf("result: 0x%08x\n", manyVars_A(0x1000, 0x300, 0x30, 0x7));
+               System.out.printf("result: 0x%08x\n", manyVars_B(0x1000, 0x300, 0x30, 0x7));
+               System.out.printf("result: 0x%08x\n", manyVars_C(0x1000, 0x300, 0x30, 0x7));
+               System.out.printf("result: 0x%08x\n", manyVars_D(0x1000, 0x300, 0x30, 0x7));
        }
 
        public static int manyVars_A(int a, int b, int c, int d) {