comparison graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/ir/Arithmetic.java @ 3001:ef9afe6ffd5e

Removed references to "stateBefore".
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 16 Jun 2011 16:03:26 +0200
parents 9fcc456bbc18
children d95db56f8deb
comparison
equal deleted inserted replaced
3000:6c95d57cb1e2 3001:ef9afe6ffd5e
42 * @param opcode the bytecode opcode 42 * @param opcode the bytecode opcode
43 * @param kind the result kind of the operation 43 * @param kind the result kind of the operation
44 * @param x the first input instruction 44 * @param x the first input instruction
45 * @param y the second input instruction 45 * @param y the second input instruction
46 * @param isStrictFP indicates this operation has strict rounding semantics 46 * @param isStrictFP indicates this operation has strict rounding semantics
47 * @param stateBefore the state for instructions that may trap
48 */ 47 */
49 public Arithmetic(CiKind kind, int opcode, Value x, Value y, boolean isStrictFP, Graph graph) { 48 public Arithmetic(CiKind kind, int opcode, Value x, Value y, boolean isStrictFP, Graph graph) {
50 super(kind, opcode, x, y, INPUT_COUNT, SUCCESSOR_COUNT, graph); 49 super(kind, opcode, x, y, INPUT_COUNT, SUCCESSOR_COUNT, graph);
51 this.isStrictFP = isStrictFP; 50 this.isStrictFP = isStrictFP;
52 } 51 }