Index: src/ic/stub-cache.h |
diff --git a/src/ic/stub-cache.h b/src/ic/stub-cache.h |
index 4b27e6e396db6cfa619bd64e3a7fa2593376d455..82bce652c28023148ffc5d7158aee894d1ec2990 100644 |
--- a/src/ic/stub-cache.h |
+++ b/src/ic/stub-cache.h |
@@ -10,6 +10,9 @@ |
namespace v8 { |
namespace internal { |
+namespace compiler { |
+class CodeStubAssembler; |
Michael Starzinger
2016/02/01 16:04:12
nit: This looks like a left-over from another piec
danno
2016/02/02 07:52:55
Done.
|
+} |
// The stub cache is used for megamorphic property accesses. |
// It maps (map, name, type) to property access handlers. The cache does not |
@@ -160,6 +163,7 @@ class StubCache { |
Entry secondary_[kSecondaryTableSize]; |
Isolate* isolate_; |
+ friend class compiler::CodeStubAssembler; |
Michael Starzinger
2016/02/01 16:04:12
nit: This looks like a left-over from another piec
danno
2016/02/02 07:52:55
Done.
|
friend class Isolate; |
friend class SCTableReference; |