aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CTargetMachine.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-08 02:11:51 +0000
committerChris Lattner <sabre@nondot.org>2005-11-08 02:11:51 +0000
commitce8eb0c16b7197eaa886f90c1ef9ab9bbf1957c4 (patch)
tree8ad2d4faa7559f5772587eb7bf70371ef79da736 /lib/Target/CBackend/CTargetMachine.h
parent26b91ebb63b29c94b3803b15ff1e6929f135caec (diff)
Add a new option to indicate we want the code generator to emit code quickly,not spending tons of time microoptimizing it. This is useful for an -O0style of build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24233 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CTargetMachine.h')
-rw-r--r--lib/Target/CBackend/CTargetMachine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CBackend/CTargetMachine.h b/lib/Target/CBackend/CTargetMachine.h
index 580e02e726..f5894aab83 100644
--- a/lib/Target/CBackend/CTargetMachine.h
+++ b/lib/Target/CBackend/CTargetMachine.h
@@ -26,7 +26,7 @@ struct CTargetMachine : public TargetMachine {
// This is the only thing that actually does anything here.
virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
- CodeGenFileType FileType);
+ CodeGenFileType FileType, bool Fast);
// This class always works, but shouldn't be the default in most cases.
static unsigned getModuleMatchQuality(const Module &M) { return 1; }