| Index: src/mips64/frames-mips64.cc
|
| diff --git a/src/mips/frames-mips.cc b/src/mips64/frames-mips64.cc
|
| similarity index 86%
|
| copy from src/mips/frames-mips.cc
|
| copy to src/mips64/frames-mips64.cc
|
| index b65f1bff9520794bf8aa8f03c7b9c5e7f14dca40..2991248ccf96cc0e816f31f3f97aa1ec981056c2 100644
|
| --- a/src/mips/frames-mips.cc
|
| +++ b/src/mips64/frames-mips64.cc
|
| @@ -2,14 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +
|
| #include "src/v8.h"
|
|
|
| -#if V8_TARGET_ARCH_MIPS
|
| +#if V8_TARGET_ARCH_MIPS64
|
|
|
| #include "src/assembler.h"
|
| #include "src/frames.h"
|
| -#include "src/mips/assembler-mips-inl.h"
|
| -#include "src/mips/assembler-mips.h"
|
| +#include "src/mips64/assembler-mips64-inl.h"
|
| +#include "src/mips64/assembler-mips64.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -39,4 +40,4 @@ Object*& ExitFrame::constant_pool_slot() const {
|
|
|
| } } // namespace v8::internal
|
|
|
| -#endif // V8_TARGET_ARCH_MIPS
|
| +#endif // V8_TARGET_ARCH_MIPS64
|
|
|