We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e09e003 commit cc0ff57Copy full SHA for cc0ff57
src/backend/linux_raw/vdso_wrappers.rs
@@ -421,9 +421,9 @@ extern "C" {
421
fn rustix_x86_int_0x80();
422
}
423
424
-// This uses `.weak` so that it doesn't conflict if multiple versions of rustix
425
-// are linked in in non-lto builds, and `.ifndef` so that it doesn't conflict
426
-// if multiple versions of rustix are linked in in lto builds.
+// This uses `.weak` linkage to avoid conflicts when multiple versions of
+// rustix are linked in non-LTO builds, and `.ifndef` to prevent collisions
+// when multiple versions are linked in in LTO builds.
427
#[cfg(target_arch = "x86")]
428
global_asm!(
429
r#"
0 commit comments