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/include/llvm-c | |
| 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/include/llvm-c')
| -rw-r--r-- | llvm/include/llvm-c/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/ExecutionEngine.h b/llvm/include/llvm-c/ExecutionEngine.h index 8390c682dce..a31dc8246a3 100644 --- a/llvm/include/llvm-c/ExecutionEngine.h +++ b/llvm/include/llvm-c/ExecutionEngine.h @@ -62,7 +62,7 @@ int LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp, int LLVMCreateJITCompiler(LLVMExecutionEngineRef *OutJIT, LLVMModuleProviderRef MP, - int Fast, + unsigned OptLevel, char **OutError); void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); |

