| Index: src/compiler/pipeline.h
|
| diff --git a/src/compiler/pipeline.h b/src/compiler/pipeline.h
|
| index 03d889b0b02581f06eab006806706a51a145c66c..b2ea1935ed3a7661464924e9b014c966ee09b1c7 100644
|
| --- a/src/compiler/pipeline.h
|
| +++ b/src/compiler/pipeline.h
|
| @@ -7,13 +7,14 @@
|
|
|
| #include "src/v8.h"
|
|
|
| +// Clients of this interface shouldn't depend on lots of compiler internals.
|
| +// Do not include anything from src/compiler here!
|
| #include "src/compiler.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| namespace compiler {
|
|
|
| -// Clients of this interface shouldn't depend on lots of compiler internals.
|
| class CallDescriptor;
|
| class Graph;
|
| class InstructionSequence;
|
| @@ -50,9 +51,6 @@ class Pipeline {
|
| static inline bool SupportedBackend() { return V8_TURBOFAN_BACKEND != 0; }
|
| static inline bool SupportedTarget() { return V8_TURBOFAN_TARGET != 0; }
|
|
|
| - static void SetUp();
|
| - static void TearDown();
|
| -
|
| private:
|
| static Handle<Code> GenerateCodeForTesting(CompilationInfo* info,
|
| CallDescriptor* call_descriptor,
|
|
|