1 //===-- CppBackendTargetInfo.cpp - CppBackend Target Implementation -------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "CPPTargetMachine.h"
11 #include "llvm/Module.h"
12 #include "llvm/Target/TargetRegistry.h"
15 Target
llvm::TheCppBackendTarget
;
17 static unsigned CppBackend_TripleMatchQuality(const std::string
&TT
) {
18 // This class always works, but shouldn't be the default in most cases.
22 extern "C" void LLVMInitializeCppBackendTargetInfo() {
23 TargetRegistry::RegisterTarget(TheCppBackendTarget
, "cpp",
25 &CppBackend_TripleMatchQuality
);