rust/tune: treat vfp as vfpv2

This commit is contained in:
Cody P Schafer
2016-02-18 00:32:38 -05:00
parent 898efb793c
commit 38c950b0a1
+2 -1
View File
@@ -50,7 +50,8 @@ def llvm_features_from_tune(d):
f.append("+vfp3")
if 'vfpv3d16' in feat:
f.append("+d16")
if 'vfpv2' in feat:
if 'vfpv2' in feat or 'vfp' in feat:
f.append("+vfp2")
if 'neon' in feat: