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

Unified Diff: Source/wtf/CPU.h

Issue 712303003: Fix CPU(32BIT) definition (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/CPU.h
diff --git a/Source/wtf/CPU.h b/Source/wtf/CPU.h
index 3588be376d79fc71ba0533461a1250d6957412b1..a7035e5ebea62745ba3de6aa60403bbf888b0ee3 100644
--- a/Source/wtf/CPU.h
+++ b/Source/wtf/CPU.h
@@ -168,10 +168,6 @@
#define WTF_CPU_APPLE_ARMV7S 1
#endif
-#if !defined(WTF_CPU_64BIT)
-#define WTF_CPU_32BIT 1
-#endif
-
#endif /* ARM */
/* CPU(ARM64) - AArch64 64-bit */
@@ -185,4 +181,8 @@
#define WTF_CPU_64BIT 1
#endif
+#if !defined(WTF_CPU_64BIT)
+#define WTF_CPU_32BIT 1
+#endif
+
#endif /* WTF_CPU_h */
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698