diff options
| author | bors <bors@rust-lang.org> | 2022-11-28 00:18:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-11-28 00:18:22 +0000 |
| commit | 8c6bf2bee7914fd94f8ae5ec96234e8a2ce51958 (patch) | |
| tree | 15afce0a3703d88e98a01d9b8258dc236c07afaa /compiler/rustc_codegen_gcc | |
| parent | 07e664c41ae5679b912ba9d1f7364ebaac8e51b6 (diff) | |
| parent | 2ccb38b92d38961a41ab5095e67dc1e3209182dd (diff) | |
| download | rust-8c6bf2bee7914fd94f8ae5ec96234e8a2ce51958.tar.gz rust-8c6bf2bee7914fd94f8ae5ec96234e8a2ce51958.zip | |
Auto merge of #104990 - matthiaskrgr:rollup-oskk8v3, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - #104955 (Switch rustdoc-gui test to function call) - #104976 (Prefer doc comments over `//`-comments in compiler) - #104984 (Remove Crate::primitives field) - #104989 (update Miri) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/context.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_gcc/src/context.rs b/compiler/rustc_codegen_gcc/src/context.rs index 2e71c3665da..837708aeb0e 100644 --- a/compiler/rustc_codegen_gcc/src/context.rs +++ b/compiler/rustc_codegen_gcc/src/context.rs @@ -88,9 +88,9 @@ pub struct CodegenCx<'gcc, 'tcx> { pub vtables: RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), RValue<'gcc>>>, // TODO(antoyo): improve the SSA API to not require those. - // Mapping from function pointer type to indexes of on stack parameters. + /// Mapping from function pointer type to indexes of on stack parameters. pub on_stack_params: RefCell<FxHashMap<FunctionPtrType<'gcc>, FxHashSet<usize>>>, - // Mapping from function to indexes of on stack parameters. + /// Mapping from function to indexes of on stack parameters. pub on_stack_function_params: RefCell<FxHashMap<Function<'gcc>, FxHashSet<usize>>>, /// Cache of emitted const globals (value -> global) |
