Index: src/cpu.cc |
diff --git a/src/cpu.cc b/src/cpu.cc |
index 2eb00c4ac43fe24ac8815c3ec2ee8dcabf22fdf1..bdc65aa20e61d5fd4d3627451bd38e08cfa688d2 100644 |
--- a/src/cpu.cc |
+++ b/src/cpu.cc |
@@ -395,11 +395,11 @@ CPU::CPU() : stepping_(0), |
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; |
} |