2009-07-15 14:35:19 +08:00
|
|
|
//===-- CppBackendTargetInfo.cpp - CppBackend Target Implementation -------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-19 07:22:46 +08:00
|
|
|
#include "CPPTargetMachine.h"
|
2009-07-15 14:35:19 +08:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-19 07:03:22 +08:00
|
|
|
Target llvm::TheCppBackendTarget;
|
2009-07-15 14:35:19 +08:00
|
|
|
|
|
|
|
static unsigned CppBackend_TripleMatchQuality(const std::string &TT) {
|
|
|
|
// This class always works, but shouldn't be the default in most cases.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void LLVMInitializeCppBackendTargetInfo() {
|
|
|
|
TargetRegistry::RegisterTarget(TheCppBackendTarget, "cpp",
|
|
|
|
"C++ backend",
|
2009-07-26 10:22:58 +08:00
|
|
|
&CppBackend_TripleMatchQuality);
|
2009-07-15 14:35:19 +08:00
|
|
|
}
|