ARM64CollectLOH.cpp: Tweak \param. [-Wdocumentation]
[oota-llvm.git] / lib / Target / CppBackend / TargetInfo / CppBackendTargetInfo.cpp
index 1ca74a4895c442761b4dfc598e0df28278a574f5..096dc7350db029eb2b83c6bcf7f8420de82e4ac9 100644 (file)
@@ -14,9 +14,10 @@ using namespace llvm;
 
 Target llvm::TheCppBackendTarget;
 
-static unsigned CppBackend_TripleMatchQuality(const std::string &TT) {
-  // This class always works, but shouldn't be the default in most cases.
-  return 1;
+static bool CppBackend_TripleMatchQuality(Triple::ArchType Arch) {
+  // This backend doesn't correspond to any architecture. It must be explicitly
+  // selected with -march.
+  return false;
 }
 
 extern "C" void LLVMInitializeCppBackendTargetInfo() {