summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Target/SubtargetFeature.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/SubtargetFeature.cpp b/lib/Target/SubtargetFeature.cpp
index bcb8f75..29afeff 100644
--- a/lib/Target/SubtargetFeature.cpp
+++ b/lib/Target/SubtargetFeature.cpp
@@ -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";
}