Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 56ce497f839a5e33ea3005b416cf234eca95c2c4..af0a8911c873bfeff4a74b79cca91d109ccef6a2 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -4635,7 +4635,8 @@ class DeoptimizationInputData: public FixedArray { |
} |
// Allocates a DeoptimizationInputData. |
- MUST_USE_RESULT static MaybeObject* Allocate(int deopt_entry_count, |
+ MUST_USE_RESULT static MaybeObject* Allocate(Isolate* isolate, |
+ int deopt_entry_count, |
PretenureFlag pretenure); |
// Casting. |
@@ -4681,7 +4682,8 @@ class DeoptimizationOutputData: public FixedArray { |
} |
// Allocates a DeoptimizationOutputData. |
- MUST_USE_RESULT static MaybeObject* Allocate(int number_of_deopt_points, |
+ MUST_USE_RESULT static MaybeObject* Allocate(Isolate* isolate, |
+ int number_of_deopt_points, |
PretenureFlag pretenure); |
// Casting. |