| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index b9dc4181c50b0a10d79bf7af43275089dbf0c47b..02be8a66a3eb3f09b2407ba217c3bd261973d6a3 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -9583,8 +9583,8 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_DateLocalTimezone) {
|
| ASSERT(args.length() == 1);
|
|
|
| CONVERT_DOUBLE_ARG_CHECKED(x, 0);
|
| - int64_t time = isolate->date_cache()->EquivalentTime(static_cast<int64_t>(x));
|
| - const char* zone = OS::LocalTimezone(static_cast<double>(time));
|
| + const char* zone =
|
| + isolate->date_cache()->LocalTimezone(static_cast<int64_t>(x));
|
| return isolate->heap()->AllocateStringFromUtf8(CStrVector(zone));
|
| }
|
|
|
|
|