mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-22 19:50:05 +00:00
spirv-fuzz: Eliminate spurious semicolons (#3025)
Some unintended semicolons that are harmless on most platforms led to compiler warnings on another platform.
This commit is contained in:
parent
041f0a0249
commit
c5e6761ac8
@ -23,7 +23,7 @@ FuzzerPassAddNoContractionDecorations::FuzzerPassAddNoContractionDecorations(
|
|||||||
opt::IRContext* ir_context, FactManager* fact_manager,
|
opt::IRContext* ir_context, FactManager* fact_manager,
|
||||||
FuzzerContext* fuzzer_context,
|
FuzzerContext* fuzzer_context,
|
||||||
protobufs::TransformationSequence* transformations)
|
protobufs::TransformationSequence* transformations)
|
||||||
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations){};
|
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations) {}
|
||||||
|
|
||||||
FuzzerPassAddNoContractionDecorations::
|
FuzzerPassAddNoContractionDecorations::
|
||||||
~FuzzerPassAddNoContractionDecorations() = default;
|
~FuzzerPassAddNoContractionDecorations() = default;
|
||||||
|
@ -28,7 +28,7 @@ FuzzerPassAddUsefulConstructs::FuzzerPassAddUsefulConstructs(
|
|||||||
opt::IRContext* ir_context, FactManager* fact_manager,
|
opt::IRContext* ir_context, FactManager* fact_manager,
|
||||||
FuzzerContext* fuzzer_context,
|
FuzzerContext* fuzzer_context,
|
||||||
protobufs::TransformationSequence* transformations)
|
protobufs::TransformationSequence* transformations)
|
||||||
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations){};
|
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations) {}
|
||||||
|
|
||||||
FuzzerPassAddUsefulConstructs::~FuzzerPassAddUsefulConstructs() = default;
|
FuzzerPassAddUsefulConstructs::~FuzzerPassAddUsefulConstructs() = default;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ FuzzerPassAdjustFunctionControls::FuzzerPassAdjustFunctionControls(
|
|||||||
opt::IRContext* ir_context, FactManager* fact_manager,
|
opt::IRContext* ir_context, FactManager* fact_manager,
|
||||||
FuzzerContext* fuzzer_context,
|
FuzzerContext* fuzzer_context,
|
||||||
protobufs::TransformationSequence* transformations)
|
protobufs::TransformationSequence* transformations)
|
||||||
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations){};
|
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations) {}
|
||||||
|
|
||||||
FuzzerPassAdjustFunctionControls::~FuzzerPassAdjustFunctionControls() = default;
|
FuzzerPassAdjustFunctionControls::~FuzzerPassAdjustFunctionControls() = default;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ FuzzerPassAdjustLoopControls::FuzzerPassAdjustLoopControls(
|
|||||||
opt::IRContext* ir_context, FactManager* fact_manager,
|
opt::IRContext* ir_context, FactManager* fact_manager,
|
||||||
FuzzerContext* fuzzer_context,
|
FuzzerContext* fuzzer_context,
|
||||||
protobufs::TransformationSequence* transformations)
|
protobufs::TransformationSequence* transformations)
|
||||||
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations){};
|
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations) {}
|
||||||
|
|
||||||
FuzzerPassAdjustLoopControls::~FuzzerPassAdjustLoopControls() = default;
|
FuzzerPassAdjustLoopControls::~FuzzerPassAdjustLoopControls() = default;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ FuzzerPassAdjustSelectionControls::FuzzerPassAdjustSelectionControls(
|
|||||||
opt::IRContext* ir_context, FactManager* fact_manager,
|
opt::IRContext* ir_context, FactManager* fact_manager,
|
||||||
FuzzerContext* fuzzer_context,
|
FuzzerContext* fuzzer_context,
|
||||||
protobufs::TransformationSequence* transformations)
|
protobufs::TransformationSequence* transformations)
|
||||||
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations){};
|
: FuzzerPass(ir_context, fact_manager, fuzzer_context, transformations) {}
|
||||||
|
|
||||||
FuzzerPassAdjustSelectionControls::~FuzzerPassAdjustSelectionControls() =
|
FuzzerPassAdjustSelectionControls::~FuzzerPassAdjustSelectionControls() =
|
||||||
default;
|
default;
|
||||||
|
Loading…
Reference in New Issue
Block a user