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

Removed liveness marking.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Apr 2011 21:54:31 +0200
parents c58a301eb2d7
children fec99fc30af1
comparison
equal deleted inserted replaced
2545:bb050fe2901d 2546:e1b3db8031ee
48 * @param stateBefore the state before executing this instruction 48 * @param stateBefore the state before executing this instruction
49 */ 49 */
50 public StoreIndexed(Value array, Value index, Value length, CiKind elementType, Value value, FrameState stateBefore) { 50 public StoreIndexed(Value array, Value index, Value length, CiKind elementType, Value value, FrameState stateBefore) {
51 super(CiKind.Void, array, index, length, elementType, stateBefore); 51 super(CiKind.Void, array, index, length, elementType, stateBefore);
52 this.value = value; 52 this.value = value;
53 setFlag(Flag.LiveSideEffect);
54 } 53 }
55 54
56 /** 55 /**
57 * Gets the instruction that produces the value that is to be stored into the array. 56 * Gets the instruction that produces the value that is to be stored into the array.
58 * @return the value to write into the array 57 * @return the value to write into the array