diff options
Diffstat (limited to 'lib/Target/MSIL/TargetInfo')
-rw-r--r-- | lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp b/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp index e50d607..07de726 100644 --- a/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp +++ b/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp @@ -14,10 +14,6 @@ using namespace llvm; Target llvm::TheMSILTarget; -static unsigned MSIL_JITMatchQuality() { - return 0; -} - static unsigned MSIL_TripleMatchQuality(const std::string &TT) { // This class always works, but shouldn't be the default in most cases. return 1; @@ -32,6 +28,5 @@ extern "C" void LLVMInitializeMSILTargetInfo() { TargetRegistry::RegisterTarget(TheMSILTarget, "msil", "MSIL backend", &MSIL_TripleMatchQuality, - &MSIL_ModuleMatchQuality, - &MSIL_JITMatchQuality); + &MSIL_ModuleMatchQuality); } |