Add TargetInfo libraries for all targets.
[oota-llvm.git] / lib / Target / MSIL / TargetInfo / MSILTargetInfo.cpp
1 //===-- 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"
12 using namespace llvm;
13
14 Target TheMSILTarget;
15
16 static unsigned MSIL_JITMatchQuality() {
17   return 0;
18 }
19
20 static 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
25 static 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
30 extern "C" void LLVMInitializeMSILTargetInfo() { 
31   TargetRegistry::RegisterTarget(TheMSILTarget, "msil",    
32                                   "MSIL backend",
33                                   &MSIL_TripleMatchQuality,
34                                   &MSIL_ModuleMatchQuality,
35                                   &MSIL_JITMatchQuality);
36 }