summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp')
-rw-r--r--llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp b/llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
index e50d607dccd..07de7266f41 100644
--- a/llvm/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud