comparison graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/CheckGraalInvariants.java @ 16737:26b0fd782ad5

Remove println.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 11 Aug 2014 12:04:00 +0200
parents 1227fb471b6d
children 216ac26009a2
comparison
equal deleted inserted replaced
16736:1227fb471b6d 16737:26b0fd782ad5
171 /** 171 /**
172 * Checks the invariants for a single graph. 172 * Checks the invariants for a single graph.
173 */ 173 */
174 private static void checkGraph(HighTierContext context, StructuredGraph graph, boolean verifyEquals) { 174 private static void checkGraph(HighTierContext context, StructuredGraph graph, boolean verifyEquals) {
175 if (verifyEquals) { 175 if (verifyEquals) {
176 System.out.println("test");
177 new VerifyUsageWithEquals(Value.class).apply(graph, context); 176 new VerifyUsageWithEquals(Value.class).apply(graph, context);
178 new VerifyUsageWithEquals(Register.class).apply(graph, context); 177 new VerifyUsageWithEquals(Register.class).apply(graph, context);
179 new VerifyUsageWithEquals(JavaType.class).apply(graph, context); 178 new VerifyUsageWithEquals(JavaType.class).apply(graph, context);
180 new VerifyUsageWithEquals(JavaMethod.class).apply(graph, context); 179 new VerifyUsageWithEquals(JavaMethod.class).apply(graph, context);
181 new VerifyUsageWithEquals(JavaField.class).apply(graph, context); 180 new VerifyUsageWithEquals(JavaField.class).apply(graph, context);