summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/lib/Support/TargetRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/Support/TargetRegistry.cpp')
-rw-r--r--contrib/llvm/lib/Support/TargetRegistry.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/llvm/lib/Support/TargetRegistry.cpp b/contrib/llvm/lib/Support/TargetRegistry.cpp
index eefef8a..02a6d33 100644
--- a/contrib/llvm/lib/Support/TargetRegistry.cpp
+++ b/contrib/llvm/lib/Support/TargetRegistry.cpp
@@ -73,8 +73,7 @@ const Target *TargetRegistry::lookupTarget(const std::string &TT,
auto I = std::find_if(targets().begin(), targets().end(), ArchMatch);
if (I == targets().end()) {
- Error = "No available targets are compatible with this triple, "
- "see -version for the available targets.";
+ Error = "No available targets are compatible with this triple.";
return nullptr;
}
OpenPOWER on IntegriCloud