/* */ }
/* */
/* */ private boolean isConstant(Expr expr, int op, ASTree oprand) {
/* 598 */ oprand = stripPlusExpr(oprand);
/* 599 */ if ((oprand instanceof IntConst)) {
/* 600 */ IntConst c = (IntConst)oprand;
/* 601 */ long v = c.get();
/* 602 */ if (op == 45)
/* 603 */ v = -v;
/* 604 */ else if (op == 126)
/* 605 */ v ^= -1L;
/* */ else {
/* 607 */ return false;
/* */ }
/* 609 */ c.set(v);
/* */ }
/* 611 */ else if ((oprand instanceof DoubleConst)) {
/* 612 */ DoubleConst c = (DoubleConst)oprand;
/* 613 */ if (op == 45)
/* 614 */ c.set(-c.get());
/* */ else
/* 616 */ return false;
/* */ }
/* */ else {
/* 619 */ return false;