Revision: 23986
Author: [email protected]
Date: Tue Sep 16 20:16:11 2014 UTC
Log: MIPS64: Fixed int vs. uintptr_t confusion (plus some cleanup on
the way).
Port r23966 (a498d5e3)
BUG=
[email protected], [email protected]
Review URL: https://codereview.chromium.org/570563006
https://code.google.com/p/v8/source/detail?r=23986
Modified:
/branches/bleeding_edge/test/cctest/test-platform.cc
=======================================
--- /branches/bleeding_edge/test/cctest/test-platform.cc Tue Sep 16
09:23:27 2014 UTC
+++ /branches/bleeding_edge/test/cctest/test-platform.cc Tue Sep 16
20:16:11 2014 UTC
@@ -22,6 +22,8 @@
__asm__ __volatile__("mov x16, sp; str x16, %0" : "=g"(sp_addr));
#elif V8_HOST_ARCH_MIPS
__asm__ __volatile__("sw $sp, %0" : "=g"(sp_addr));
+#elif V8_HOST_ARCH_MIPS64
+ __asm__ __volatile__("sd $sp, %0" : "=g"(sp_addr));
#else
#error Host architecture was not detected as supported by v8
#endif
--
--
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.