We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3691c80 commit fed7473Copy full SHA for fed7473
lib/runtime-core/src/jit_debug.rs
@@ -15,6 +15,7 @@ use std::sync::{Arc, Mutex};
15
// Implementation of this function is derived from wasmtime and is licensed under
16
// the Apache 2.0 license. See ATTRIBUTIONS.md for full license and more
17
// information.
18
+#[linkage="linkonce"]
19
#[no_mangle]
20
#[inline(never)]
21
extern "C" fn __jit_debug_register_code() {
@@ -80,6 +81,7 @@ struct JitDebugDescriptor {
80
81
/// The data is in the form of a doubly linked list. This global variable acts
82
/// as a head node with extra information about the operation that we want the
83
/// debugger to perform.
84
85
86
#[allow(non_upper_case_globals)]
87
static mut __jit_debug_descriptor: JitDebugDescriptor = JitDebugDescriptor {
0 commit comments