| Index: src/compiler/linkage.h
|
| diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
|
| index 3012f56e01f2a3a98695737ed3b719f7e6a685bf..6053a901b5bd0e071588f7d953705e5bd31e1336 100644
|
| --- a/src/compiler/linkage.h
|
| +++ b/src/compiler/linkage.h
|
| @@ -76,9 +76,9 @@ class LinkageLocation {
|
| kPointerSize);
|
| }
|
|
|
| - static LinkageLocation ForSavedCallerMarker() {
|
| + static LinkageLocation ForSavedCallerFunction() {
|
| return ForCalleeFrameSlot((StandardFrameConstants::kCallerPCOffset -
|
| - StandardFrameConstants::kMarkerOffset) /
|
| + StandardFrameConstants::kFunctionOffset) /
|
| kPointerSize);
|
| }
|
|
|
| @@ -164,6 +164,7 @@ class CallDescriptor final : public ZoneObject {
|
| kRestoreJSSP = 1u << 8,
|
| // Causes the code generator to initialize the root register.
|
| kInitializeRootRegister = 1u << 9,
|
| + kHasStandardFrameHeader = 1u << 10,
|
| kPatchableCallSiteWithNop = kPatchableCallSite | kNeedsNopAfterCall
|
| };
|
| typedef base::Flags<Flag> Flags;
|
|
|