diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
tree | 4def12e759965de927d963ac65840d663ef9d1ea /lib/Support/TargetRegistry.cpp | |
parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) |
Diffstat (limited to 'lib/Support/TargetRegistry.cpp')
-rw-r--r-- | lib/Support/TargetRegistry.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Support/TargetRegistry.cpp b/lib/Support/TargetRegistry.cpp index eefef8ad8eaa5..02a6d334b911e 100644 --- a/lib/Support/TargetRegistry.cpp +++ b/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; } |