comparison graal/GraalCompiler/src/com/sun/c1x/C1XCompilation.java @ 2719:ae1c50a03297

Fixed regression.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 16:26:32 +0200
parents c1ce2a53d6c3
children a2f62de90c76
comparison
equal deleted inserted replaced
2718:c1ce2a53d6c3 2719:ae1c50a03297
282 if (assumptions.count() > 0) { 282 if (assumptions.count() > 0) {
283 targetMethod.setAssumptions(assumptions); 283 targetMethod.setAssumptions(assumptions);
284 } 284 }
285 285
286 if (compiler.isObserved()) { 286 if (compiler.isObserved()) {
287 // TODO(tw): FIXME 287 compiler.fireCompilationEvent(new CompilationEvent(this, "After code generation", hir.getHIRStartBlock(), false, true, targetMethod));
288 // compiler.fireCompilationEvent(new CompilationEvent(this, "After code generation", hir.startBlock, false, true, targetMethod));
289 } 288 }
290 289
291 if (C1XOptions.PrintTimers) { 290 if (C1XOptions.PrintTimers) {
292 C1XTimers.CODE_CREATE.stop(); 291 C1XTimers.CODE_CREATE.stop();
293 } 292 }