forked from OSchip/llvm-project
parent
aa1641e564
commit
6beaa8adb8
|
@ -78,7 +78,7 @@ public:
|
|||
std::string getString() const;
|
||||
|
||||
/// Adding Features.
|
||||
void AddFeature(const StringRef String, bool IsEnabled = true);
|
||||
void AddFeature(const StringRef String);
|
||||
|
||||
/// ToggleFeature - Toggle a feature and returns the newly updated feature
|
||||
/// bits.
|
||||
|
|
|
@ -109,12 +109,11 @@ static std::string Join(const std::vector<std::string> &V) {
|
|||
}
|
||||
|
||||
/// Adding features.
|
||||
void SubtargetFeatures::AddFeature(const StringRef String,
|
||||
bool IsEnabled) {
|
||||
void SubtargetFeatures::AddFeature(const StringRef String) {
|
||||
// Don't add empty features
|
||||
if (!String.empty()) {
|
||||
// Convert to lowercase, prepend flag and add to vector
|
||||
Features.push_back(PrependFlag(String.lower(), IsEnabled));
|
||||
Features.push_back(PrependFlag(String.lower(), true));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue