diff 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
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/ir/LoadField.java	Wed Apr 27 20:22:05 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/ir/LoadField.java	Wed Apr 27 20:27:43 2011 +0200
@@ -40,8 +40,8 @@
      * @param stateBefore the state before the field access
      * @param isLoaded indicates if the class is loaded
      */
-    public LoadField(Value object, RiField field, FrameState stateBefore, boolean isLoaded) {
-        super(field.kind().stackKind(), object, field, stateBefore, isLoaded);
+    public LoadField(Value object, RiField field, FrameState stateBefore) {
+        super(field.kind().stackKind(), object, field, stateBefore);
     }
 
     /**