blob: 47e650be82ac9fa9c58ea83e73f71c4367156de9 [file] [log] [blame]
Daniel Dunbar0eb66992009-07-15 06:35:19 +00001//===-- MSILTargetInfo.cpp - MSIL 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 TheMSILTarget;
15
16static unsigned MSIL_JITMatchQuality() {
17 return 0;
18}
19
20static unsigned MSIL_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 MSIL_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 LLVMInitializeMSILTargetInfo() {
31 TargetRegistry::RegisterTarget(TheMSILTarget, "msil",
32 "MSIL backend",
33 &MSIL_TripleMatchQuality,
34 &MSIL_ModuleMatchQuality,
35 &MSIL_JITMatchQuality);
36}