Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1833)

Unified Diff: Source/wtf/CPU.h

Issue 476143002: Implement the Oilpan pushAllRegisters on MIPS64 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use the three-line copyright Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/wtf/CPU.h
diff --git a/Source/wtf/CPU.h b/Source/wtf/CPU.h
index 061d128afab82d7c4883c04f7e28a4d226e0e4a8..edd81782422adbe9157a205aa14a967736e5696c 100644
--- a/Source/wtf/CPU.h
+++ b/Source/wtf/CPU.h
@@ -180,4 +180,10 @@
#define WTF_CPU_64BIT 1
#endif
+/* CPU(MIPS64) - Mips 64-bit */
Mads Ager (chromium) 2014/08/18 06:54:16 This change looks unrelated and unused. Could you
petarj 2014/08/18 13:05:18 Done.
+#if defined(__mips__) && defined(__LP64__)
+#define WTF_CPU_MIPS64 1
+#define WTF_CPU_64BIT 1
+#endif
+
#endif /* WTF_CPU_h */
« Source/platform/heap/asm/SaveRegisters_mips64.S ('K') | « Source/platform/heap/blink_heap.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698