diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-04-29 00:32:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-04-29 00:32:19 +0000 |
commit | 9f795134f3ad884f8e3382551271b6f21fe37fe6 (patch) | |
tree | 33b2a2ece14ed01f9a9f0475f0c49d0c978c7354 /llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp | |
parent | 084669a1c94ec215e8366ec827ffec21d5a4afeb (diff) | |
download | bcm5719-llvm-9f795134f3ad884f8e3382551271b6f21fe37fe6.tar.gz bcm5719-llvm-9f795134f3ad884f8e3382551271b6f21fe37fe6.zip |
The second part of the change from -fast to -O#. This changes the JIT to accept
an optimization level instead of a simple boolean telling it to generate code
"fast" or the other type of "fast".
llvm-svn: 70347
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp index 98819c19b83..7edd0837d50 100644 --- a/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp +++ b/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp @@ -42,7 +42,7 @@ MAttrs("mattr", /// available for the current target. Otherwise, return null. /// ExecutionEngine *JIT::createJIT(ModuleProvider *MP, std::string *ErrorStr, - JITMemoryManager *JMM, bool Fast) { + JITMemoryManager *JMM, unsigned OptLevel) { const TargetMachineRegistry::entry *TheArch = MArch; if (TheArch == 0) { std::string Error; @@ -74,7 +74,7 @@ ExecutionEngine *JIT::createJIT(ModuleProvider *MP, std::string *ErrorStr, // If the target supports JIT code generation, return a new JIT now. if (TargetJITInfo *TJ = Target->getJITInfo()) - return new JIT(MP, *Target, *TJ, JMM, Fast); + return new JIT(MP, *Target, *TJ, JMM, OptLevel); if (ErrorStr) *ErrorStr = "target does not support JIT code generation"; |