()
| 72 | } |
| 73 | |
| 74 | static void target() { |
| 75 | if (system_cpu == null || system_abi == null) { |
| 76 | System.err.println("ERROR: Unknown target"); |
| 77 | System.exit(1); |
| 78 | } |
| 79 | System.out.print(system_cpu); |
| 80 | System.out.print("-"); |
| 81 | System.out.println(system_abi); |
| 82 | System.exit(0); |
| 83 | } |
| 84 | |
| 85 | static void dump(CodeGen code, int dump, int pass) { |
| 86 | if ((dump & pass) != 0) { |