File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
compiler/rustc_codegen_ssa/src/back
src/test/run-make-fulldeps/symbol-visibility Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -656,7 +656,7 @@ impl<'a> Linker for GccLinker<'a> {
656656 return ;
657657 }
658658
659- // FIXME hide #[no_mangle] symbols for proc-macros
659+ // FIXME(#99978) hide #[no_mangle] symbols for proc-macros
660660
661661 let is_windows = self . sess . target . is_like_windows ;
662662 let path = tmpdir. join ( if is_windows { "list.def" } else { "list" } ) ;
Original file line number Diff line number Diff line change 5959 [ "$$($(NM) $(TMPDIR)/$(RDYLIB_NAME) | grep -v __imp_ | grep -c public_generic_function_from_rlib)" -eq "0" ]
6060
6161 # Check that a proc macro exports its public #[no_mangle] functions
62- # FIXME avoid exporting #[no_mangle] symbols for proc macros
62+ # FIXME(#99978) avoid exporting #[no_mangle] symbols for proc macros
6363 [ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_cdylib)" -eq "1" ]
6464 # Check that a proc macro exports the public #[no_mangle] functions of dependencies
6565 [ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_rlib)" -eq "1" ]
@@ -108,7 +108,7 @@ endif
108108 [ "$$($(NM) $(TMPDIR)/$(RDYLIB_NAME) | grep -v __imp_ | grep -c public_generic_function_from_rlib)" -eq "1" ]
109109
110110 # Check that a proc macro exports its public #[no_mangle] functions
111- # FIXME avoid exporting #[no_mangle] symbols for proc macros
111+ # FIXME(#99978) avoid exporting #[no_mangle] symbols for proc macros
112112 [ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_cdylib)" -eq "1" ]
113113 # Check that a proc macro exports the public #[no_mangle] functions of dependencies
114114 [ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_rlib)" -eq "1" ]
You can’t perform that action at this time.
0 commit comments