comparison graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java @ 2543:c58a301eb2d7

Clean up on canTrap.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:22:10 +0200
parents 3fc322165071
children 491896f81cae
comparison
equal deleted inserted replaced
2541:0f9eeb15e636 2543:c58a301eb2d7
1270 memoryMap.kill(); 1270 memoryMap.kill();
1271 } 1271 }
1272 1272
1273 if (x instanceof StateSplit) { 1273 if (x instanceof StateSplit) {
1274 StateSplit stateSplit = (StateSplit) x; 1274 StateSplit stateSplit = (StateSplit) x;
1275 if (!stateSplit.isStateCleared() && stateSplit.stateBefore() == null) { 1275 if (stateSplit.stateBefore() == null) {
1276 stateSplit.setStateBefore(curState.immutableCopy(bci)); 1276 stateSplit.setStateBefore(curState.immutableCopy(bci));
1277 } 1277 }
1278 } 1278 }
1279 1279
1280 if (x.canTrap()) { 1280 if (x.canTrap()) {