aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetMachine.h
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2010-04-07 18:23:27 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2010-04-07 18:23:27 +0000
commit4b38debf597a22e2db02aafdaa40264d7770c1ad (patch)
tree4c92fc6bb9fc6cf45e5124fe2acf8f82d11773d9 /include/llvm/Target/TargetMachine.h
parente1676011c615e81522278ad09ebb3d57e5e6bb94 (diff)
downloadexternal_llvm-4b38debf597a22e2db02aafdaa40264d7770c1ad.zip
external_llvm-4b38debf597a22e2db02aafdaa40264d7770c1ad.tar.gz
external_llvm-4b38debf597a22e2db02aafdaa40264d7770c1ad.tar.bz2
Remove late ARM codegen optimization pass committed by accident.
It is not ready for public yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100673 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetMachine.h')
-rw-r--r--include/llvm/Target/TargetMachine.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h
index 2f29de5..d1d665f 100644
--- a/include/llvm/Target/TargetMachine.h
+++ b/include/llvm/Target/TargetMachine.h
@@ -264,15 +264,10 @@ public:
bool DisableVerify = true);
/// Target-Independent Code Generator Pass Configuration Options.
-
- /// addPreISelPasses - This method should add any "last minute" LLVM->LLVM
- /// passes (which are run just before instruction selector).
- virtual bool addPreISel(PassManagerBase &, CodeGenOpt::Level) {
- return true;
- }
-
- /// addInstSelector - This method should install an instruction selector pass,
- /// which converts from LLVM code to machine instructions.
+
+ /// addInstSelector - This method should add any "last minute" LLVM->LLVM
+ /// passes, then install an instruction selector pass, which converts from
+ /// LLVM code to machine instructions.
virtual bool addInstSelector(PassManagerBase &, CodeGenOpt::Level) {
return true;
}