if (forceType) {
ppType[0] = ftype; // either int or uint at this point
if (ftype == cx.intType()) {
if (!(result instanceof IntNumberConstant))
result = new IntNumberConstant(result.intValue());
}
else { // ftype == cx.uintType()
if (!(result instanceof UintNumberConstant))
result = new UintNumberConstant(result.uintValue());
}