blob: 3c29070804a7ee790efa5d7d668a4095c8aa5b23 [file] [log] [blame]
Daniel Dunbarc984df82009-07-15 06:35:19 +00001//===-- CppBackendTargetInfo.cpp - CppBackend Target Implementation -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Module.h"
11#include "llvm/Target/TargetRegistry.h"
12using namespace llvm;
13
14Target TheCppBackendTarget;
15
16static unsigned CppBackend_JITMatchQuality() {
17 return 0;
18}
19
20static unsigned CppBackend_TripleMatchQuality(const std::string &TT) {
21 // This class always works, but shouldn't be the default in most cases.
22 return 1;
23}
24
25static unsigned CppBackend_ModuleMatchQuality(const Module &M) {
26 // This class always works, but shouldn't be the default in most cases.
27 return 1;
28}
29
30extern "C" void LLVMInitializeCppBackendTargetInfo() {
31 TargetRegistry::RegisterTarget(TheCppBackendTarget, "cpp",
32 "C++ backend",
33 &CppBackend_TripleMatchQuality,
34 &CppBackend_ModuleMatchQuality,
35 &CppBackend_JITMatchQuality);
36}