mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 06:12:18 +00:00
Print:
'' is not a recognized processor for this target (ignoring processor) instead of: is not a recognized processor for this target (ignoring processor) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1e111c7bbb
commit
3eb3369a25
@ -157,8 +157,8 @@ uint32_t SubtargetFeatures::Parse(const std::string &String,
|
|||||||
// Set base feature bits
|
// Set base feature bits
|
||||||
Bits = CPUEntry->Value;
|
Bits = CPUEntry->Value;
|
||||||
} else {
|
} else {
|
||||||
std::cerr << Features[0]
|
std::cerr << "'" << Features[0]
|
||||||
<< " is not a recognized processor for this target"
|
<< "' is not a recognized processor for this target"
|
||||||
<< " (ignoring processor)"
|
<< " (ignoring processor)"
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
@ -177,8 +177,8 @@ uint32_t SubtargetFeatures::Parse(const std::string &String,
|
|||||||
if (isEnabled(Feature)) Bits |= FeatureEntry->Value;
|
if (isEnabled(Feature)) Bits |= FeatureEntry->Value;
|
||||||
else Bits &= ~FeatureEntry->Value;
|
else Bits &= ~FeatureEntry->Value;
|
||||||
} else {
|
} else {
|
||||||
std::cerr << Feature
|
std::cerr << "'" << Feature
|
||||||
<< " is not a recognized feature for this target"
|
<< "' is not a recognized feature for this target"
|
||||||
<< " (ignoring feature)"
|
<< " (ignoring feature)"
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user