| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index bd99944149ec4adab18c97b2f9f3f85242888131..d27ba5989c6c9be0fc427b97e9fb86ee106061b9 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -186,7 +186,7 @@ Handle<Code> Pipeline::GenerateCode() {
|
|
|
| VerifyAndPrintGraph(&graph, "Initial untyped");
|
|
|
| - if (context_specialization_) {
|
| + if (context_specialization()) {
|
| SourcePositionTable::Scope pos(&source_positions,
|
| SourcePosition::Unknown());
|
| // Specialize the code to the context as aggressively as possible.
|
| @@ -195,7 +195,7 @@ Handle<Code> Pipeline::GenerateCode() {
|
| VerifyAndPrintGraph(&graph, "Context specialized");
|
| }
|
|
|
| - if (FLAG_turbo_inlining) {
|
| + if (inlining()) {
|
| SourcePositionTable::Scope pos(&source_positions,
|
| SourcePosition::Unknown());
|
| JSInliner inliner(info(), &jsgraph);
|
|
|