1 //===-- MSILTargetInfo.cpp - MSIL Target Implementation -------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "MSILWriter.h"
11 #include "llvm/Module.h"
12 #include "llvm/Target/TargetRegistry.h"
15 Target
llvm::TheMSILTarget
;
17 static unsigned MSIL_TripleMatchQuality(const std::string
&TT
) {
18 // This class always works, but shouldn't be the default in most cases.
22 extern "C" void LLVMInitializeMSILTargetInfo() {
23 TargetRegistry::RegisterTarget(TheMSILTarget
, "msil",
25 &MSIL_TripleMatchQuality
);