diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-14 16:37:18 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-11-14 16:37:18 +0000 |
commit | 8c19a8f17bb0f1464c9e74e776bc1122426f4fe0 (patch) | |
tree | fbd7889138be2a483668690d08cd8aa4b4a83e91 /llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp | |
parent | 5e738284d73dbbf80f706a9ad5cadbaf7e208cf2 (diff) | |
download | bcm5719-llvm-8c19a8f17bb0f1464c9e74e776bc1122426f4fe0.tar.gz bcm5719-llvm-8c19a8f17bb0f1464c9e74e776bc1122426f4fe0.zip |
Implement DISABLE_INLINE for MSVC. This required changing the position in all
forward declaration and patching tblgen to emit it right. Patch by Amine Khaldi!
llvm-svn: 88798
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp b/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp index 49faf64845b..565509cd1f3 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp @@ -35,7 +35,7 @@ namespace llvm { extern "C" { // Debuggers puts a breakpoint in this function. - void DISABLE_INLINE __jit_debug_register_code() { } + DISABLE_INLINE void __jit_debug_register_code() { } // We put information about the JITed function in this global, which the // debugger reads. Make sure to specify the version statically, because the |