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 | 1a0a423b38f5d3a21b0a89f372a1b19324b7e4f4 (patch) | |
tree | 7dcd794031fce72663658b9c7f7958cb8516956b /llvm/lib/ExecutionEngine | |
parent | 6ce1ab1c643f7fd1d9a693bc478938b1dc998516 (diff) | |
download | bcm5719-llvm-1a0a423b38f5d3a21b0a89f372a1b19324b7e4f4.tar.gz bcm5719-llvm-1a0a423b38f5d3a21b0a89f372a1b19324b7e4f4.zip |
Use Compiler.h macro instead of __attribute__.
llvm-svn: 82532
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-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 62d66d55ae0..fa640103c28 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp +++ b/llvm/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 |