Fix typos

This commit is contained in:
Aaron Hill 2019-03-28 12:22:08 -04:00
parent aed7ec42b3
commit c4556a5a65
No known key found for this signature in database
GPG key ID: B4087E510E98B164

View file

@ -126,14 +126,14 @@ impl TypeMap<'ll, 'tcx> {
// This kind of type cannot be properly represented
// via LLVM debuginfo. As a workaround,
// we register a temporary Ty to metadata mapping
// for the function before we compute its actual metadat.a
// for the function before we compute its actual metadata.
// If the metadata computation ends up recursing back to the
// original function, it will use the temporary mapping
// for the inner self-reference, preventing us from
// recursing forever.
//
// This function is used to remove the temporary metadata
// mapping after we've computed the actual metadat
// mapping after we've computed the actual metadata
fn remove_type(
&mut self,
type_: Ty<'tcx>,
@ -663,8 +663,6 @@ pub fn type_metadata(
size.bits(),
align.bits() as u32,
DW_ATE_unsigned)
}
};