diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 07:38:23 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-22 07:38:23 +0000 |
commit | 4473c2d0ff4a979038bb57421cf68c50724dcbf2 (patch) | |
tree | 4f09752835d1660bfe31aaa7803585c16c116791 | |
parent | 05dafd82077e439ffe1490410c380e6c14f60646 (diff) |
Use Compiler.h macro instead of __attribute__.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82532 91177308-0d34-0410-b5e6-96231b3b80d8
-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 62d66d55ae..fa640103c2 100644 --- a/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp +++ b/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp @@ -34,7 +34,7 @@ namespace llvm { extern "C" { // Debuggers puts a breakpoint in this function. - void __attribute__((noinline)) __jit_debug_register_code() { } + void DISABLE_INLINE __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 |