comparison graal/com.oracle.max.asm/src/com/oracle/max/asm/Label.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
33 /** 33 /**
34 * References to instructions that jump to this unresolved label. 34 * References to instructions that jump to this unresolved label.
35 * These instructions need to be patched when the label is bound 35 * These instructions need to be patched when the label is bound
36 * using the {@link #patchInstructions(AbstractAssembler)} method. 36 * using the {@link #patchInstructions(AbstractAssembler)} method.
37 */ 37 */
38 private ArrayList<Integer> patchPositions = new ArrayList<Integer>(4); 38 private ArrayList<Integer> patchPositions = new ArrayList<>(4);
39 39
40 /** 40 /**
41 * Returns the position of this label in the code buffer. 41 * Returns the position of this label in the code buffer.
42 * @return the position 42 * @return the position
43 */ 43 */