add a version of the APFloat constructor that initializes to 0.0
[llvm/avr.git] / lib / Target / MSIL / TargetInfo / MSILTargetInfo.cpp
blobdfd42814e51cc68b23dbbb1d03ea0be248091a68
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 //===----------------------------------------------------------------------===//
10 #include "MSILWriter.h"
11 #include "llvm/Module.h"
12 #include "llvm/Target/TargetRegistry.h"
13 using namespace llvm;
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.
19 return 1;
22 extern "C" void LLVMInitializeMSILTargetInfo() {
23 TargetRegistry::RegisterTarget(TheMSILTarget, "msil",
24 "MSIL backend",
25 &MSIL_TripleMatchQuality);