MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / target

Method target

chapter21/src/test/java/com/seaofnodes/simple/Simple.java:74–83  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 1

mainMethod · 0.95

Calls 2

exitMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected