diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-10-23 08:40:19 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-10-23 08:40:19 +0000 |
commit | 82058c05f874ab156a797b762af9c0182316b679 (patch) | |
tree | 082115c548517d5340c46129c34a968a05874383 /llvm/lib/ExecutionEngine | |
parent | 9873c9039e78341641294b682480bf865e5486a7 (diff) | |
download | bcm5719-llvm-82058c05f874ab156a797b762af9c0182316b679.tar.gz bcm5719-llvm-82058c05f874ab156a797b762af9c0182316b679.zip |
Move the remaining attribute macros to systematic names based on the attribute
name and prefixed with 'LLVM_'.
llvm-svn: 117203
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 6e11a3cd936..d01d34b65c2 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. - DISABLE_INLINE void __jit_debug_register_code() { } + LLVM_ATTRIBUTE_NOINLINE 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 |