File tree 2 files changed +3
-3
lines changed
compiler/rustc_codegen_ssa/src/back
src/test/run-make-fulldeps/symbol-visibility
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> {
656
656
return ;
657
657
}
658
658
659
- // FIXME hide #[no_mangle] symbols for proc-macros
659
+ // FIXME(#99978) hide #[no_mangle] symbols for proc-macros
660
660
661
661
let is_windows = self . sess . target . is_like_windows ;
662
662
let path = tmpdir. join ( if is_windows { "list.def" } else { "list" } ) ;
Original file line number Diff line number Diff line change 59
59
[ "$$($(NM) $(TMPDIR)/$(RDYLIB_NAME) | grep -v __imp_ | grep -c public_generic_function_from_rlib)" -eq "0" ]
60
60
61
61
# 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
63
63
[ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_cdylib)" -eq "1" ]
64
64
# Check that a proc macro exports the public #[no_mangle] functions of dependencies
65
65
[ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_rlib)" -eq "1" ]
@@ -108,7 +108,7 @@ endif
108
108
[ "$$($(NM) $(TMPDIR)/$(RDYLIB_NAME) | grep -v __imp_ | grep -c public_generic_function_from_rlib)" -eq "1" ]
109
109
110
110
# 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
112
112
[ "$$($(NM) $(TMPDIR)/$(CDYLIB_NAME) | grep -v __imp_ | grep -c public_c_function_from_cdylib)" -eq "1" ]
113
113
# Check that a proc macro exports the public #[no_mangle] functions of dependencies
114
114
[ "$$($(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