comparison graal/com.oracle.graal.compiler.common/src/com/oracle/graal/compiler/common/type/ArithmeticOpTable.java @ 18124:689092d5cf44

Store explicit input bit width in IntegerConvertNode.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 20 Oct 2014 16:26:05 +0200
parents 83c3dd41ca64
children c88ab4f1f04a
comparison
equal deleted inserted replaced
18123:3c7e73362d6a 18124:689092d5cf44
453 super(op); 453 super(op);
454 } 454 }
455 455
456 public abstract Constant foldConstant(int inputBits, int resultBits, Constant value); 456 public abstract Constant foldConstant(int inputBits, int resultBits, Constant value);
457 457
458 public abstract Stamp foldStamp(int resultBits, Stamp stamp); 458 public abstract Stamp foldStamp(int inputBits, int resultBits, Stamp stamp);
459 } 459 }
460 } 460 }