comparison graal/com.oracle.graal.loop/src/com/oracle/graal/loop/LoopFragment.java @ 19507:1cde96b96673

Fixed code format issues.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 19 Feb 2015 16:15:56 +0100
parents 46c2e70d54ad
children cb59c8b7da46
comparison
equal deleted inserted replaced
19506:8c7536965c95 19507:1cde96b96673
330 /* 330 /*
331 * Using the old exit's state as the merge's state is necessary because some of the 331 * Using the old exit's state as the merge's state is necessary because some of the
332 * VirtualState nodes contained in the old exit's state may be shared by other 332 * VirtualState nodes contained in the old exit's state may be shared by other
333 * dominated VirtualStates. Those dominated virtual states need to see the 333 * dominated VirtualStates. Those dominated virtual states need to see the
334 * proxy->phi update that are applied below. 334 * proxy->phi update that are applied below.
335 * 335 *
336 * We now update the original fragment's nodes accordingly: 336 * We now update the original fragment's nodes accordingly:
337 */ 337 */
338 originalExitState.applyToVirtual(node -> original.nodes.clearAndGrow(node)); 338 originalExitState.applyToVirtual(node -> original.nodes.clearAndGrow(node));
339 exitState.applyToVirtual(node -> original.nodes.markAndGrow(node)); 339 exitState.applyToVirtual(node -> original.nodes.markAndGrow(node));
340 } 340 }