tidy: Remove extra semicolons
These were causing compilation warnings.
This commit is contained in:
committed by
Andrew Brown
parent
5c5eabb8d0
commit
9b8e7b511e
@@ -851,7 +851,7 @@ impl TypeSetBuilder {
|
|||||||
|
|
||||||
pub fn build(self) -> TypeSet {
|
pub fn build(self) -> TypeSet {
|
||||||
let min_lanes = if self.includes_scalars { 1 } else { 2 };
|
let min_lanes = if self.includes_scalars { 1 } else { 2 };
|
||||||
;
|
|
||||||
let bools = range_to_set(self.bools.to_range(1..MAX_BITS, None))
|
let bools = range_to_set(self.bools.to_range(1..MAX_BITS, None))
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter(legal_bool)
|
.filter(legal_bool)
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ pub(crate) fn define(imm: &Immediates, entities: &EntityRefs) -> FormatRegistry
|
|||||||
.value()
|
.value()
|
||||||
.value(),
|
.value(),
|
||||||
);
|
);
|
||||||
registry.insert(Builder::new("FloatCond").imm(&imm.floatcc).value());;
|
registry.insert(Builder::new("FloatCond").imm(&imm.floatcc).value());
|
||||||
|
|
||||||
registry.insert(
|
registry.insert(
|
||||||
Builder::new("IntSelect")
|
Builder::new("IntSelect")
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ pub(crate) fn define() -> Definitions {
|
|||||||
let mut all_instructions = AllInstructions::new();
|
let mut all_instructions = AllInstructions::new();
|
||||||
|
|
||||||
let immediates = Immediates::new();
|
let immediates = Immediates::new();
|
||||||
let entities = EntityRefs::new();;
|
let entities = EntityRefs::new();
|
||||||
let format_registry = formats::define(&immediates, &entities);
|
let format_registry = formats::define(&immediates, &entities);
|
||||||
let instructions = instructions::define(
|
let instructions = instructions::define(
|
||||||
&mut all_instructions,
|
&mut all_instructions,
|
||||||
|
|||||||
Reference in New Issue
Block a user