aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/MSIL
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-26 02:22:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-26 02:22:58 +0000
commitfa27ff296d3694a68e7abb3b6b7629588def3e58 (patch)
tree2a8122cc81a121aaf66245f276761d12dd92bca0 /lib/Target/MSIL
parenta5881e3060aee9f82aef3747a97650e5eafe893a (diff)
downloadexternal_llvm-fa27ff296d3694a68e7abb3b6b7629588def3e58.zip
external_llvm-fa27ff296d3694a68e7abb3b6b7629588def3e58.tar.gz
external_llvm-fa27ff296d3694a68e7abb3b6b7629588def3e58.tar.bz2
Kill Target specific ModuleMatchQuality stuff.
- This was overkill and inconsistently implemented. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSIL')
-rw-r--r--lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp b/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
index 07de726..dfd4281 100644
--- a/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
+++ b/lib/Target/MSIL/TargetInfo/MSILTargetInfo.cpp
@@ -19,14 +19,8 @@ static unsigned MSIL_TripleMatchQuality(const std::string &TT) {
return 1;
}
-static unsigned MSIL_ModuleMatchQuality(const Module &M) {
- // This class always works, but shouldn't be the default in most cases.
- return 1;
-}
-
extern "C" void LLVMInitializeMSILTargetInfo() {
TargetRegistry::RegisterTarget(TheMSILTarget, "msil",
"MSIL backend",
- &MSIL_TripleMatchQuality,
- &MSIL_ModuleMatchQuality);
+ &MSIL_TripleMatchQuality);
}