blob: 178c1dd8b4c6659861ad7a8dd450c2cf06259fdf [file] [log] [blame]
Daniel Dunbarc984df82009-07-15 06:35:19 +00001//===-- CBackendTargetInfo.cpp - CBackend 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 TheCBackendTarget;
15
16static unsigned CBackend_JITMatchQuality() {
17 return 0;
18}
19
20static unsigned CBackend_TripleMatchQuality(const std::string &TT) {
21 // This class always works, but must be requested explicitly on
22 // llc command line.
23 return 0;
24}
25
26static unsigned CBackend_ModuleMatchQuality(const Module &M) {
27 // This class always works, but must be requested explicitly on
28 // llc command line.
29 return 0;
30}
31
32extern "C" void LLVMInitializeCBackendTargetInfo() {
33 TargetRegistry::RegisterTarget(TheCBackendTarget, "c",
34 "C backend",
35 &CBackend_TripleMatchQuality,
36 &CBackend_ModuleMatchQuality,
37 &CBackend_JITMatchQuality);
38}