Skip to content

Commit

Permalink
end return statements and void expressions with a semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ljedrz committed Oct 16, 2018
1 parent fa81576 commit 24b74b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/librustc_codegen_llvm/debuginfo/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ impl TypeMap<'ll, 'tcx> {
type_: Ty<'tcx>) -> UniqueTypeId {
// Let's see if we already have something in the cache
if let Some(unique_type_id) = self.type_to_unique_id.get(&type_).cloned() {
return unique_type_id
return unique_type_id;
}
// if not, generate one

Expand Down Expand Up @@ -290,7 +290,7 @@ macro_rules! return_if_metadata_created_in_meantime {
.borrow()
.find_metadata_for_unique_id($unique_type_id)
{
return MetadataCreationResult::new(metadata, true)
return MetadataCreationResult::new(metadata, true);
}
)
}
Expand Down Expand Up @@ -552,7 +552,7 @@ pub fn type_metadata(
.borrow()
.find_metadata_for_unique_id(unique_type_id)
{
return Err(metadata)
return Err(metadata);
}

Ok(MetadataCreationResult::new(pointer_type_metadata(cx, t, pointee_metadata),
Expand Down Expand Up @@ -612,7 +612,7 @@ pub fn type_metadata(
.borrow()
.find_metadata_for_unique_id(unique_type_id)
{
return metadata
return metadata;
}

// This is actually a function pointer, so wrap it in pointer DI
Expand Down Expand Up @@ -1477,7 +1477,7 @@ fn prepare_enum_metadata(
};

if let (&layout::Abi::Scalar(_), Some(discr)) = (&layout.abi, discriminant_type_metadata) {
return FinalMetadata(discr)
return FinalMetadata(discr);
}

let (enum_type_size, enum_type_align) = layout.size_and_align();
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_codegen_llvm/debuginfo/source_loc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn set_source_location(
/// first real statement/expression of the function is codegened.
pub fn start_emitting_source_locations(dbg_context: &FunctionDebugContext<'ll>) {
if let FunctionDebugContext::RegularContext(ref data) = *dbg_context {
data.source_locations_enabled.set(true)
data.source_locations_enabled.set(true);
}
}

Expand Down

0 comments on commit 24b74b2

Please sign in to comment.