Index: src/hydrogen.cc |
=================================================================== |
--- src/hydrogen.cc (revision 6698) |
+++ src/hydrogen.cc (working copy) |
@@ -4642,7 +4642,7 @@ |
instr = new HBitNot(value); |
break; |
case Token::SUB: |
- instr = new HMul(graph_->GetConstantMinus1(), value); |
+ instr = new HNeg(value); |
break; |
default: |
UNREACHABLE(); |
@@ -5825,7 +5825,7 @@ |
UsePosition* current_pos = range->first_pos(); |
while (current_pos != NULL) { |
- if (current_pos->RegisterIsBeneficial()) { |
+ if (current_pos->RegisterIsBeneficial() || FLAG_trace_all_uses) { |
trace_.Add(" %d M", current_pos->pos().Value()); |
} |
current_pos = current_pos->next(); |