rust/tune: add missing +

This commit is contained in:
Cody P Schafer
2016-02-18 00:35:42 -05:00
parent 38c950b0a1
commit 2eafa1892d

View File

@@ -72,7 +72,7 @@ def llvm_features_from_tune(d):
if d.getVar('ARM_THUMB_OPT', True) is "thumb":
if not feat.isdisjoint(v7):
f.append("+thumb2")
f.append("thumb-mode")
f.append("+thumb-mode")
if 'cortexa5' in feat:
f.append("+a5")