Revision: 21789
Author:   [email protected]
Date:     Thu Jun 12 06:58:55 2014 UTC
Log:      Fix detection of VFP3D16 on Galaxy Tab 10.1.

BUG=v8:3387
LOG=y
[email protected]

Review URL: https://codereview.chromium.org/329963002
http://code.google.com/p/v8/source/detail?r=21789

Modified:
 /branches/bleeding_edge/src/cpu.cc

=======================================
--- /branches/bleeding_edge/src/cpu.cc  Wed Jun 11 09:44:14 2014 UTC
+++ /branches/bleeding_edge/src/cpu.cc  Thu Jun 12 06:58:55 2014 UTC
@@ -395,11 +395,11 @@
     has_neon_ = HasListItem(features, "neon");
     has_thumbee_ = HasListItem(features, "thumbee");
     has_vfp_ = HasListItem(features, "vfp");
-    if (HasListItem(features, "vfpv3")) {
+    if (HasListItem(features, "vfpv3d16")) {
       has_vfp3_ = true;
-      has_vfp3_d32_ = true;
-    } else if (HasListItem(features, "vfpv3d16")) {
+    } else if (HasListItem(features, "vfpv3")) {
       has_vfp3_ = true;
+      has_vfp3_d32_ = true;
     }
     delete[] features;
   }

--
--
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.

Reply via email to