comparison graal/GraalCompiler/src/com/sun/c1x/ir/LoadField.java @ 2540:3fc322165071

More flags clean up.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 20:27:43 +0200
parents e1ba5a93e997
children 4a4dab936c1e
comparison
equal deleted inserted replaced
2539:fa3bda50cbfd 2540:3fc322165071
38 * @param field the compiler interface field 38 * @param field the compiler interface field
39 * @param isStatic indicates if the field is static 39 * @param isStatic indicates if the field is static
40 * @param stateBefore the state before the field access 40 * @param stateBefore the state before the field access
41 * @param isLoaded indicates if the class is loaded 41 * @param isLoaded indicates if the class is loaded
42 */ 42 */
43 public LoadField(Value object, RiField field, FrameState stateBefore, boolean isLoaded) { 43 public LoadField(Value object, RiField field, FrameState stateBefore) {
44 super(field.kind().stackKind(), object, field, stateBefore, isLoaded); 44 super(field.kind().stackKind(), object, field, stateBefore);
45 } 45 }
46 46
47 /** 47 /**
48 * Gets the declared type of the field being accessed. 48 * Gets the declared type of the field being accessed.
49 * @return the declared type of the field being accessed. 49 * @return the declared type of the field being accessed.