| Index: runtime/vm/intermediate_language.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language.cc (revision 23151)
|
| +++ runtime/vm/intermediate_language.cc (working copy)
|
| @@ -1585,10 +1585,11 @@
|
| }
|
|
|
|
|
| -StrictCompareInstr::StrictCompareInstr(Token::Kind kind,
|
| +StrictCompareInstr::StrictCompareInstr(intptr_t token_pos,
|
| + Token::Kind kind,
|
| Value* left,
|
| Value* right)
|
| - : ComparisonInstr(kind, left, right),
|
| + : ComparisonInstr(token_pos, kind, left, right),
|
| needs_number_check_(FLAG_new_identity_spec) {
|
| ASSERT((kind == Token::kEQ_STRICT) || (kind == Token::kNE_STRICT));
|
| }
|
|
|