diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2523:268b8eb84b6e

Removed compiler extension mechanism
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 16:48:23 +0200
parents a384fac3fd34
children e7d14327e4ac
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:43:31 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 16:48:23 2011 +0200
@@ -132,12 +132,6 @@
             new BlockMerger(this);
             verifyAndPrint("After block merging");
         }
-
-        if (compilation.compiler.extensions != null) {
-            for (C1XCompilerExtension ext : compilation.compiler.extensions) {
-                ext.run(this);
-            }
-        }
     }
 
     private void computeLinearScanOrder() {