Index: test/cctest/compiler/test-pipeline.cc |
diff --git a/test/cctest/compiler/test-pipeline.cc b/test/cctest/compiler/test-pipeline.cc |
index 98b0baeefd0de84a63ec9c72020031927a748b8e..9d8a2d1b8052d04a87d619047a94743d3c0f950d 100644 |
--- a/test/cctest/compiler/test-pipeline.cc |
+++ b/test/cctest/compiler/test-pipeline.cc |
@@ -23,7 +23,11 @@ TEST(PipelineAdd) { |
*v8::Handle<v8::Function>::Cast(CompileRun(source))); |
CompilationInfoWithZone info(function); |
- CHECK(Compiler::ParseAndAnalyze(&info)); |
+ CHECK(Parser::Parse(&info)); |
+ CHECK(Rewriter::Rewrite(&info)); |
+ CHECK(Scope::Analyze(&info)); |
+ CHECK(AstNumbering::Renumber(info.function(), info.zone())); |
+ CHECK_NE(NULL, info.scope()); |
Pipeline pipeline(&info); |
#if V8_TURBOFAN_TARGET |