mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 00:25:01 +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) llvm-svn: 23256
This commit is contained in:
parent
482f71733a
commit
4c5e794a9c
@ -157,8 +157,8 @@ uint32_t SubtargetFeatures::Parse(const std::string &String,
|
||||
// Set base feature bits
|
||||
Bits = CPUEntry->Value;
|
||||
} else {
|
||||
std::cerr << Features[0]
|
||||
<< " is not a recognized processor for this target"
|
||||
std::cerr << "'" << Features[0]
|
||||
<< "' is not a recognized processor for this target"
|
||||
<< " (ignoring processor)"
|
||||
<< "\n";
|
||||
}
|
||||
@ -177,8 +177,8 @@ uint32_t SubtargetFeatures::Parse(const std::string &String,
|
||||
if (isEnabled(Feature)) Bits |= FeatureEntry->Value;
|
||||
else Bits &= ~FeatureEntry->Value;
|
||||
} else {
|
||||
std::cerr << Feature
|
||||
<< " is not a recognized feature for this target"
|
||||
std::cerr << "'" << Feature
|
||||
<< "' is not a recognized feature for this target"
|
||||
<< " (ignoring feature)"
|
||||
<< "\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user