diff graal/GraalCompiler/src/com/sun/c1x/alloc/LinearScan.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/alloc/LinearScan.java	Wed Apr 27 15:12:29 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/alloc/LinearScan.java	Wed Apr 27 15:36:29 2011 +0200
@@ -2093,7 +2093,7 @@
                 assert !hasCall(opId) || operand.isStackSlot() || !isCallerSave(operand) : "cannot have caller-save register operands at calls";
                 return operand;
             } else if (operand.isRegister()) {
-                assert value instanceof LoadRegister;
+                assert false : "must not reach here";
                 return operand;
             } else {
                 assert value instanceof Constant;