Revision: 24121
Author: [email protected]
Date: Mon Sep 22 13:48:12 2014 UTC
Log: fix compile for arm64 on mavericks
[email protected]
BUG=
Review URL: https://codereview.chromium.org/592063002
https://code.google.com/p/v8/source/detail?r=24121
Modified:
/branches/bleeding_edge/src/arm64/simulator-arm64.cc
=======================================
--- /branches/bleeding_edge/src/arm64/simulator-arm64.cc Tue Sep 9
12:43:43 2014 UTC
+++ /branches/bleeding_edge/src/arm64/simulator-arm64.cc Mon Sep 22
13:48:12 2014 UTC
@@ -1855,9 +1855,12 @@
void Simulator::CheckMemoryAccess(uintptr_t address, uintptr_t stack) {
if ((address >= stack_limit_) && (address < stack)) {
fprintf(stream_, "ACCESS BELOW STACK POINTER:\n");
- fprintf(stream_, " sp is here: 0x%016" PRIx64 "\n", stack);
- fprintf(stream_, " access was here: 0x%016" PRIx64 "\n", address);
- fprintf(stream_, " stack limit is here: 0x%016" PRIx64 "\n",
stack_limit_);
+ fprintf(stream_, " sp is here: 0x%016" PRIx64 "\n",
+ static_cast<uint64_t>(stack));
+ fprintf(stream_, " access was here: 0x%016" PRIx64 "\n",
+ static_cast<uint64_t>(address));
+ fprintf(stream_, " stack limit is here: 0x%016" PRIx64 "\n",
+ static_cast<uint64_t>(stack_limit_));
fprintf(stream_, "\n");
FATAL("ACCESS BELOW STACK POINTER");
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.