| Index: src/codegen.cc
|
| diff --git a/src/codegen.cc b/src/codegen.cc
|
| index 49988ce7d81286a9485b3ef2a5bfc9ea7fb72cd7..48220c84e8319f3213957487f934665284ba9331 100644
|
| --- a/src/codegen.cc
|
| +++ b/src/codegen.cc
|
| @@ -379,7 +379,7 @@ CodeGenerator::InlineFunctionGenerator
|
| bool CodeGenerator::CheckForInlineRuntimeCall(CallRuntime* node) {
|
| ZoneList<Expression*>* args = node->arguments();
|
| Handle<String> name = node->name();
|
| - Runtime::Function* function = node->function();
|
| + const Runtime::Function* function = node->function();
|
| if (function != NULL && function->intrinsic_type == Runtime::INLINE) {
|
| InlineFunctionGenerator generator =
|
| FindInlineFunctionGenerator(function->function_id);
|
|
|