graal/com.oracle.graal.asm/src/com/oracle/graal/asm/Label.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/graal/com.oracle.graal.asm/src/com/oracle/graal/asm/Label.java	Mon Jul  8 15:00:12 2013
--- new/graal/com.oracle.graal.asm/src/com/oracle/graal/asm/Label.java	Mon Jul  8 15:00:12 2013

*** 64,74 **** --- 64,74 ---- public boolean isBound() { return position >= 0; } public void addPatchAt(int branchLocation) { ! assert !isBound() : "Label is already bound " + this + " " + branchLocation + " at position " + position; patchPositions.add(branchLocation); } protected void patchInstructions(AbstractAssembler masm) { assert isBound() : "Label should be bound";

graal/com.oracle.graal.asm/src/com/oracle/graal/asm/Label.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File