comparison graal/GraalCompiler/src/com/sun/c1x/ir/NegateOp.java @ 2847:caf55daa41dc

Fixed/FLoating Node
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Tue, 31 May 2011 15:19:08 +0200
parents bd17ac598c6e
children c061a6be3728
comparison
equal deleted inserted replaced
2832:775c31be565c 2847:caf55daa41dc
29 import com.sun.cri.ci.*; 29 import com.sun.cri.ci.*;
30 30
31 /** 31 /**
32 * The {@code NegateOp} instruction negates its operand. 32 * The {@code NegateOp} instruction negates its operand.
33 */ 33 */
34 public final class NegateOp extends Value { 34 public final class NegateOp extends FloatingNode {
35 35
36 private static final int INPUT_COUNT = 2; 36 private static final int INPUT_COUNT = 2;
37 private static final int INPUT_X = 0; 37 private static final int INPUT_X = 0;
38 private static final int INPUT_Y = 1; 38 private static final int INPUT_Y = 1;
39 39