Spelling fixes
This commit is contained in:
parent
234b15a3e6
commit
c493982511
|
|
@ -462,7 +462,7 @@ TriggerKit TriggerKit::create(AstNetlist* netlistp, //
|
|||
|
||||
// List of unique SenItems used by all 'senTreeps'
|
||||
std::vector<const AstSenItem*> senItemps;
|
||||
// Map from SenItem to tigger bit standing for that SenItem. There might
|
||||
// Map from SenItem to trigger bit standing for that SenItem. There might
|
||||
// be duplicate SenItems, we map all of them to the same index.
|
||||
std::unordered_map<VNRef<const AstSenItem>, size_t> senItem2TrigIdx;
|
||||
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ class UdpVisitor final : public VNVisitor {
|
|||
"There should not be a edge trigger for combinational UDP table line");
|
||||
}
|
||||
if (edgetrigp) {
|
||||
linevalp->v3error("There can be only one edge tigger signal");
|
||||
linevalp->v3error("There can be only one edge trigger signal");
|
||||
VL_DO_DANGLING(pushDeletep(edgetrigp), edgetrigp);
|
||||
}
|
||||
edgetrigp = new AstSenTree{
|
||||
|
|
|
|||
|
|
@ -6378,7 +6378,7 @@ class WidthVisitor final : public VNVisitor {
|
|||
PROTOTYPEMIS,
|
||||
"In prototype for "
|
||||
<< nodep->prettyNameQ()
|
||||
<< ", the argumement counts do not match the out-of-block declaration"
|
||||
<< ", the argument counts do not match the out-of-block declaration"
|
||||
<< " (IEEE 1800-2023 8.24)\n"
|
||||
<< protop->warnContextPrimary() << '\n'
|
||||
<< nodep->warnOther() << "... Location of out-of-block declaration\n"
|
||||
|
|
|
|||
|
|
@ -44,21 +44,21 @@
|
|||
t/t_class_extern_args_bad.v:32:30: ... Location of out-of-block declaration
|
||||
32 | function void Cls::f1bit_bad(bit a);
|
||||
| ^~~
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:13:24: In prototype for 'f2args1_bad', the argumement counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:13:24: In prototype for 'f2args1_bad', the argument counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
: ... note: In instance 't'
|
||||
13 | extern function void f2args1_bad(bit a);
|
||||
| ^~~~~~~~~~~
|
||||
t/t_class_extern_args_bad.v:35:15: ... Location of out-of-block declaration
|
||||
35 | function void Cls::f2args1_bad(bit a, bit b);
|
||||
| ^~~
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:14:24: In prototype for 'f2args2', the argumement counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:14:24: In prototype for 'f2args2', the argument counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
: ... note: In instance 't'
|
||||
14 | extern function void f2args2(bit a);
|
||||
| ^~~~~~~
|
||||
t/t_class_extern_args_bad.v:38:15: ... Location of out-of-block declaration
|
||||
38 | function void Cls::f2args2(bit a, bit b);
|
||||
| ^~~
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:15:24: In prototype for 'f2args3_bad', the argumement counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
%Error-PROTOTYPEMIS: t/t_class_extern_args_bad.v:15:24: In prototype for 'f2args3_bad', the argument counts do not match the out-of-block declaration (IEEE 1800-2023 8.24)
|
||||
: ... note: In instance 't'
|
||||
15 | extern function void f2args3_bad(bit a, bit b, bit c);
|
||||
| ^~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%Error-UNSUPPORTED: t/t_randomize_neasted_unsup.v:17:41: Unsupported: randomize() nested in inline randomize() constraints
|
||||
%Error-UNSUPPORTED: t/t_randomize_nested_unsup.v:17:41: Unsupported: randomize() nested in inline randomize() constraints
|
||||
17 | if (a.randomize() with {rdata == aa.randomize();} == 0) $stop;
|
||||
| ^~~~~~~~~
|
||||
... For error description see https://verilator.org/warn/UNSUPPORTED?v=latest
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
: ... note: In instance 'top'
|
||||
16 | 1 1 ? : ?: *;
|
||||
| ^
|
||||
%Error: t/t_udp_bad_illegal_output.v:17:11: There can be only one edge tigger signal
|
||||
%Error: t/t_udp_bad_illegal_output.v:17:11: There can be only one edge trigger signal
|
||||
: ... note: In instance 'top'
|
||||
17 | f r 0 : ?: 0;
|
||||
| ^
|
||||
|
|
|
|||
Loading…
Reference in New Issue