| Index: src/hydrogen.cc
|
| diff --git a/src/hydrogen.cc b/src/hydrogen.cc
|
| index 715a4a3214dcd7b5a02a13214ade9390829bf47d..dc9586f506ec2cdda57e0a7a113be7e7a7fc873f 100644
|
| --- a/src/hydrogen.cc
|
| +++ b/src/hydrogen.cc
|
| @@ -134,8 +134,8 @@ HDeoptimize* HBasicBlock::CreateDeoptimize(
|
| HSimulate* HBasicBlock::CreateSimulate(int ast_id) {
|
| ASSERT(HasEnvironment());
|
| HEnvironment* environment = last_environment();
|
| - ASSERT(id == AstNode::kNoNumber ||
|
| - environment->closure()->shared()->VerifyBailoutId(id));
|
| + ASSERT(ast_id == AstNode::kNoNumber ||
|
| + environment->closure()->shared()->VerifyBailoutId(ast_id));
|
|
|
| int push_count = environment->push_count();
|
| int pop_count = environment->pop_count();
|
|
|