[pypy-commit] pypy default: Issue #2081: mips64 patch for stacklet

arigo noreply at buildbot.pypy.org
Tue Jul 21 19:48:21 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r78629:1fcd70b936df
Date: 2015-07-21 19:48 +0200
http://bitbucket.org/pypy/pypy/changeset/1fcd70b936df/

Log:	Issue #2081: mips64 patch for stacklet

diff --git a/rpython/translator/c/src/stacklet/slp_platformselect.h b/rpython/translator/c/src/stacklet/slp_platformselect.h
--- a/rpython/translator/c/src/stacklet/slp_platformselect.h
+++ b/rpython/translator/c/src/stacklet/slp_platformselect.h
@@ -10,6 +10,8 @@
 #include "switch_x86_gcc.h" /* gcc on X86 */
 #elif defined(__GNUC__) && defined(__arm__)
 #include "switch_arm_gcc.h" /* gcc on arm */
+#elif defined(__GNUC__) && defined(__mips__) && defined(_ABI64)
+#include "switch_mips64_gcc.h" /* gcc on mips64 */
 #else
 #error "Unsupported platform!"
 #endif


More information about the pypy-commit mailing list