1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Removed "static" from "__jit_debug_descriptor" because "static" adds C++ mangling prefix to this symbol.

llvm-svn: 171025
This commit is contained in:
Elena Demikhovsky 2012-12-24 09:42:27 +00:00
parent 37de0ccb55
commit 9c47e68af1

View File

@ -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() { }