From b1c390989fc8b74aa36f445cd66316a8ca96455d Mon Sep 17 00:00:00 2001 From: Kai Luo Date: Tue, 5 Mar 2024 15:42:31 +0800 Subject: [PATCH] Adjust wording --- compiler/rustc_codegen_ssa/src/back/link.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index b52e6242d992..a8d6963294df 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -1088,7 +1088,7 @@ fn link_natively<'a>( strip_symbols_with_external_utility(sess, stripcmd, out_filename, Some("-l")) } Strip::Symbols => { - // Must be noted this option removes symbol __aix_rust_metadata and thus removes .info section which contains metadata. + // Must be noted this option might remove symbol __aix_rust_metadata and thus removes .info section which contains metadata. strip_symbols_with_external_utility(sess, stripcmd, out_filename, Some("-r")) } Strip::None => {}