| Index: src/compiler/linkage.cc
 | 
| diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc
 | 
| index afc999b4b2983f454917e36f23520fccb5aca6b0..d61ff207a719752175581aebf4a215c03c416604 100644
 | 
| --- a/src/compiler/linkage.cc
 | 
| +++ b/src/compiler/linkage.cc
 | 
| @@ -111,6 +111,7 @@ bool Linkage::NeedsFrameState(Runtime::FunctionId function) {
 | 
|    // are blacklisted here and can be called without a FrameState.
 | 
|    switch (function) {
 | 
|      case Runtime::kAllocateInTargetSpace:
 | 
| +    case Runtime::kDateField:
 | 
|      case Runtime::kDefineClassMethod:              // TODO(jarin): Is it safe?
 | 
|      case Runtime::kDefineGetterPropertyUnchecked:  // TODO(jarin): Is it safe?
 | 
|      case Runtime::kDefineSetterPropertyUnchecked:  // TODO(jarin): Is it safe?
 | 
| @@ -132,7 +133,6 @@ bool Linkage::NeedsFrameState(Runtime::FunctionId function) {
 | 
|        return false;
 | 
|      case Runtime::kInlineArguments:
 | 
|      case Runtime::kInlineCallFunction:
 | 
| -    case Runtime::kInlineDateField:  // TODO(bmeurer): Remove this.
 | 
|      case Runtime::kInlineDeoptimizeNow:
 | 
|      case Runtime::kInlineGetCallerJSFunction:
 | 
|      case Runtime::kInlineGetPrototype:
 | 
| 
 |