diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2515:4fdef1464592

Removed extended bytecodes and related HIR instructions.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 15:36:29 +0200
parents 16b9a8b5ad39
children a384fac3fd34
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 15:12:29 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Wed Apr 27 15:36:29 2011 +0200
@@ -111,11 +111,6 @@
     }
 
     private void optimize1() {
-        if (!compilation.isTypesafe()) {
-            new UnsafeCastEliminator(this);
-            verifyAndPrint("After unsafe cast elimination");
-        }
-
         // do basic optimizations
         if (C1XOptions.PhiSimplify) {
             new PhiSimplifier(this);