diff options
author | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2012-12-24 09:42:27 +0000 |
---|---|---|
committer | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2012-12-24 09:42:27 +0000 |
commit | 2fdeb6da8db76c7f75edea2185a014e4b499b31e (patch) | |
tree | 7a10694a8689a145748d07ac61e5aef0e05b5032 | |
parent | dc0ad92b64aa4775a82a4ed6c960ba4b3762cc66 (diff) | |
download | bcm5719-llvm-2fdeb6da8db76c7f75edea2185a014e4b499b31e.tar.gz bcm5719-llvm-2fdeb6da8db76c7f75edea2185a014e4b499b31e.zip |
Removed "static" from "__jit_debug_descriptor" because "static" adds C++ mangling prefix to this symbol.
llvm-svn: 171025
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp index 205ac2342c7..603c526d06e 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp @@ -44,7 +44,7 @@ extern "C" { // We put information about the JITed function in this global, which the // debugger reads. Make sure to specify the version statically, because the // debugger checks the version before we can set it during runtime. - static struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 }; + struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 }; // Debuggers puts a breakpoint in this function. LLVM_ATTRIBUTE_NOINLINE void __jit_debug_register_code() { } |