comparison graal/GraalCompiler/src/com/sun/c1x/ir/StoreField.java @ 2546:e1b3db8031ee

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents 0f9eeb15e636
children 4a4dab936c1e
comparison
equal deleted inserted replaced
2545:bb050fe2901d 2546:e1b3db8031ee
47 * @param isLoaded indicates if the class is loaded 47 * @param isLoaded indicates if the class is loaded
48 */ 48 */
49 public StoreField(Value object, RiField field, Value value, FrameState stateBefore) { 49 public StoreField(Value object, RiField field, Value value, FrameState stateBefore) {
50 super(CiKind.Void, object, field, stateBefore); 50 super(CiKind.Void, object, field, stateBefore);
51 this.value = value; 51 this.value = value;
52 setFlag(Flag.LiveSideEffect);
53 } 52 }
54 53
55 /** 54 /**
56 * Gets the value that is written to the field. 55 * Gets the value that is written to the field.
57 * @return the value 56 * @return the value