comparison graal/com.oracle.graal.replacements.hsail/src/com/oracle/graal/replacements/hsail/HSAILMathIntrinsicsNode.java @ 14633:da2431cc1506

Rename ValueNode kind() to getKind().
author Josef Eisl <josef.eisl@jku.at>
date Thu, 20 Mar 2014 11:48:39 +0100
parents d3b3c6e17d40
children 6c50d8a6d394
comparison
equal deleted inserted replaced
14632:5f5e2711dc24 14633:da2431cc1506
75 * 75 *
76 * @param x the argument to the math operation 76 * @param x the argument to the math operation
77 * @param op the math operation 77 * @param op the math operation
78 */ 78 */
79 public HSAILMathIntrinsicsNode(ValueNode x, HSAILArithmetic op) { 79 public HSAILMathIntrinsicsNode(ValueNode x, HSAILArithmetic op) {
80 super(StampFactory.forKind(x.kind())); 80 super(StampFactory.forKind(x.getKind()));
81 this.param = x; 81 this.param = x;
82 this.operation = op; 82 this.operation = op;
83 } 83 }
84 84
85 /** 85 /**