| Index: runtime/vm/code_generator_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/code_generator_ia32.cc (revision 1219)
|
| +++ runtime/vm/code_generator_ia32.cc (working copy)
|
| @@ -1177,7 +1177,6 @@
|
| return;
|
| }
|
| node->operand()->Visit(this);
|
| - MarkDeoptPoint(node->id(), node->token_index());
|
| if (node->kind() == Token::kADD) {
|
| // Unary operator '+' does not exist, it's a NOP, skip it.
|
| if (!IsResultNeeded(node)) {
|
| @@ -1185,6 +1184,7 @@
|
| }
|
| return;
|
| }
|
| + MarkDeoptPoint(node->id(), node->token_index());
|
| String& operator_name = String::ZoneHandle();
|
| if (node->kind() == Token::kSUB) {
|
| operator_name = String::NewSymbol(Token::Str(Token::kNEGATE));
|
|
|