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 | 0f5690b2a5307bf3ca135f41ca2a42123026d12e (patch) | |
tree | e9314b19f20e7adb35696ada96a399f749942e75 /lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp | |
parent | 653ec44e67895e6a844808a07cf98bfcecf46da4 (diff) | |
download | external_llvm-0f5690b2a5307bf3ca135f41ca2a42123026d12e.tar.gz external_llvm-0f5690b2a5307bf3ca135f41ca2a42123026d12e.tar.bz2 external_llvm-0f5690b2a5307bf3ca135f41ca2a42123026d12e.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!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp')
-rw-r--r-- | lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp b/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp index 49faf64845..565509cd1f 100644 --- a/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp +++ b/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 |