We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b1e8bd commit aa050c7Copy full SHA for aa050c7
compiler/rustc_codegen_ssa/src/traits/type_.rs
@@ -102,8 +102,8 @@ pub trait LayoutTypeMethods<'tcx>: Backend<'tcx> {
102
/// The backend type used for a rust type when it's in an SSA register.
103
///
104
/// For nearly all types this is the same as the [`Self::backend_type`], however
105
- /// `bool` (and other `0`-or-`1` values) are kept as [`BaseTypeMethods::type_i1`]
106
- /// in registers but as [`BaseTypeMethods::type_i8`] in memory.
+ /// `bool` (and other `0`-or-`1` values) are kept as `i1` in registers but as
+ /// [`BaseTypeMethods::type_i8`] in memory.
107
108
/// Converting values between the two different backend types is done using
109
/// [`from_immediate`](super::BuilderMethods::from_immediate) and
0 commit comments