comparison graal/GraalCompiler/src/com/sun/c1x/gen/LIRGenerator.java @ 2782:915456e4959e

Merge
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 25 May 2011 11:15:24 +0200
parents 93ec3f067420 bda5972a40a5
children 9bc0c2eb00d6
comparison
equal deleted inserted replaced
2780:79dda81dd337 2782:915456e4959e
1454 } 1454 }
1455 1455
1456 assert state != null; 1456 assert state != null;
1457 LIRBlock exceptionEdge = null; 1457 LIRBlock exceptionEdge = null;
1458 if (x instanceof ExceptionEdgeInstruction) { 1458 if (x instanceof ExceptionEdgeInstruction) {
1459 BlockBegin begin = ((ExceptionEdgeInstruction) x).exceptionEdge(); 1459 Instruction begin = ((ExceptionEdgeInstruction) x).exceptionEdge();
1460 if (begin != null) { 1460 if (begin != null) {
1461 exceptionEdge = getLIRBlock(begin); 1461 exceptionEdge = getLIRBlock(begin);
1462 } 1462 }
1463 } 1463 }
1464 return new LIRDebugInfo(state, exceptionEdge); 1464 return new LIRDebugInfo(state, exceptionEdge);