aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lto
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lto')
-rw-r--r--tools/lto/LTOCodeGenerator.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp
index f079c2e..060fc4f 100644
--- a/tools/lto/LTOCodeGenerator.cpp
+++ b/tools/lto/LTOCodeGenerator.cpp
@@ -304,17 +304,10 @@ bool LTOCodeGenerator::determineTarget(std::string& errMsg)
break;
}
- // Prepare subtarget feature set for the given command line options.
- SubtargetFeatures features;
-
- // Set the rest of features by default.
- // Note: Please keep this after all explict feature settings to make sure
- // defaults will not override explicitly set options.
- features.AddFeatures(
- SubtargetFeatures::getDefaultSubtargetFeatures(llvm::Triple(Triple)));
-
// construct LTModule, hand over ownership of module and target
- _target = march->createTargetMachine(Triple, features.getString());
+ const std::string FeatureStr =
+ SubtargetFeatures::getDefaultSubtargetFeatures(llvm::Triple(Triple));
+ _target = march->createTargetMachine(Triple, FeatureStr);
}
return false;
}