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

Unified Diff: runtime/vm/cpu_arm.cc

Issue 2757783003: Set TARGET_OS_* from GN, falling back to HOST_OS_*. (Closed)
Patch Set: . Created 3 years, 9 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
« no previous file with comments | « runtime/vm/constants_arm.h ('k') | runtime/vm/dart.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/cpu_arm.cc
diff --git a/runtime/vm/cpu_arm.cc b/runtime/vm/cpu_arm.cc
index f4d72d82f0fb6637c71facdffb9926b3b3f7cdef..d0ecc0dbe23952f8f8312101b4f948c6f9025f41 100644
--- a/runtime/vm/cpu_arm.cc
+++ b/runtime/vm/cpu_arm.cc
@@ -82,10 +82,10 @@ DEFINE_FLAG(bool,
#endif
#if defined(USING_SIMULATOR)
-#if defined(TARGET_ARCH_ARM_5TE)
-DEFINE_FLAG(bool, sim_use_hardfp, false, "Use the softfp ABI.");
+#if defined(TARGET_ARCH_ARM_5TE) || defined(TARGET_OS_ANDROID)
+DEFINE_FLAG(bool, sim_use_hardfp, false, "Use the hardfp ABI.");
#else
-DEFINE_FLAG(bool, sim_use_hardfp, true, "Use the softfp ABI.");
+DEFINE_FLAG(bool, sim_use_hardfp, true, "Use the hardfp ABI.");
#endif
#endif
« no previous file with comments | « runtime/vm/constants_arm.h ('k') | runtime/vm/dart.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698