| Index: src/compiler/js-graph.h
|
| diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h
|
| index 9d6f27dbe6af9be386d7576ec18c1accfc75a302..d5d3daf6f8075c5b56f2074693cd56153c60af22 100644
|
| --- a/src/compiler/js-graph.h
|
| +++ b/src/compiler/js-graph.h
|
| @@ -5,12 +5,14 @@
|
| #ifndef V8_COMPILER_JS_GRAPH_H_
|
| #define V8_COMPILER_JS_GRAPH_H_
|
|
|
| +#include "src/base/compiler-specific.h"
|
| #include "src/compiler/common-node-cache.h"
|
| #include "src/compiler/common-operator.h"
|
| #include "src/compiler/graph.h"
|
| #include "src/compiler/js-operator.h"
|
| #include "src/compiler/machine-operator.h"
|
| #include "src/compiler/node-properties.h"
|
| +#include "src/globals.h"
|
| #include "src/isolate.h"
|
|
|
| namespace v8 {
|
| @@ -23,7 +25,7 @@ class Typer;
|
| // Implements a facade on a Graph, enhancing the graph with JS-specific
|
| // notions, including various builders for operators, canonicalized global
|
| // constants, and various helper methods.
|
| -class JSGraph : public ZoneObject {
|
| +class V8_EXPORT_PRIVATE JSGraph : public NON_EXPORTED_BASE(ZoneObject) {
|
| public:
|
| JSGraph(Isolate* isolate, Graph* graph, CommonOperatorBuilder* common,
|
| JSOperatorBuilder* javascript, SimplifiedOperatorBuilder* simplified,
|
|
|