Spelling refresh
This commit is contained in:
parent
2b5c82d141
commit
bb1036b55c
|
|
@ -200,7 +200,7 @@ NetAssign_* PEIdent::elaborate_lval(Design*des,
|
||||||
|
|
||||||
// Special case: The l-value is an entire memory, or array
|
// Special case: The l-value is an entire memory, or array
|
||||||
// slice. This is, in fact, an error in l-values. Detect the
|
// slice. This is, in fact, an error in l-values. Detect the
|
||||||
// situation by noting if the index count is less then the
|
// situation by noting if the index count is less than the
|
||||||
// array dimensions (unpacked).
|
// array dimensions (unpacked).
|
||||||
if (reg->array_dimensions() > name_tail.index.size()) {
|
if (reg->array_dimensions() > name_tail.index.size()) {
|
||||||
cerr << get_fileline() << ": error: Cannot assign to array "
|
cerr << get_fileline() << ": error: Cannot assign to array "
|
||||||
|
|
|
||||||
|
|
@ -1800,7 +1800,7 @@ extern int ivl_scope_time_units(ivl_scope_t net);
|
||||||
* dimension.
|
* dimension.
|
||||||
*
|
*
|
||||||
* The ivl_signal_msb/ivl_signal_lsb functions are deprecated
|
* The ivl_signal_msb/ivl_signal_lsb functions are deprecated
|
||||||
* versions that only work with variables that have less then two
|
* versions that only work with variables that have less than two
|
||||||
* dimensions. They will return msb==lsb==0 for scalars.
|
* dimensions. They will return msb==lsb==0 for scalars.
|
||||||
*
|
*
|
||||||
* ivl_signal_port
|
* ivl_signal_port
|
||||||
|
|
|
||||||
|
|
@ -309,7 +309,7 @@ TU [munpf]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If this identifer names a previously declared type, then
|
/* If this identifier names a previously declared type, then
|
||||||
return this as a TYPE_IDENTIFIER instead. */
|
return this as a TYPE_IDENTIFIER instead. */
|
||||||
if (rc == IDENTIFIER && gn_system_verilog()) {
|
if (rc == IDENTIFIER && gn_system_verilog()) {
|
||||||
if (data_type_t*type = pform_test_type_identifier(yylval.text)) {
|
if (data_type_t*type = pform_test_type_identifier(yylval.text)) {
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ extern NetExpr *normalize_variable_part_base(const list<long>&indices, NetExpr*b
|
||||||
unsigned long wid, bool is_up);
|
unsigned long wid, bool is_up);
|
||||||
/*
|
/*
|
||||||
* Calculate a canonicalizing expression for a slice select. The
|
* Calculate a canonicalizing expression for a slice select. The
|
||||||
* indices array is less then needed to fully address a bit, so the
|
* indices array is less than needed to fully address a bit, so the
|
||||||
* result is a slice of the packed array. The return value is an
|
* result is a slice of the packed array. The return value is an
|
||||||
* expression that gets to the base of the slice, and (lwid) becomes
|
* expression that gets to the base of the slice, and (lwid) becomes
|
||||||
* the width of the slice, in bits. For example:
|
* the width of the slice, in bits. For example:
|
||||||
|
|
|
||||||
2
parse.y
2
parse.y
|
|
@ -672,7 +672,7 @@ class_identifier
|
||||||
;
|
;
|
||||||
|
|
||||||
/* The endname after a class declaration is a little tricky because
|
/* The endname after a class declaration is a little tricky because
|
||||||
the class name is detected by the lexor as a TYPE_IDENTIFER if it
|
the class name is detected by the lexor as a TYPE_IDENTIFIER if it
|
||||||
does indeed match a name. */
|
does indeed match a name. */
|
||||||
class_declaration_endname_opt
|
class_declaration_endname_opt
|
||||||
: ':' TYPE_IDENTIFIER
|
: ':' TYPE_IDENTIFIER
|
||||||
|
|
|
||||||
2
pform.h
2
pform.h
|
|
@ -400,7 +400,7 @@ extern svector<PWire*>*pform_make_task_ports(const struct vlltype&loc,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The parser uses this function to convert a unary
|
* The parser uses this function to convert a unary
|
||||||
* increment/decrement expression to the equivilent compressed
|
* increment/decrement expression to the equivalent compressed
|
||||||
* assignment statement.
|
* assignment statement.
|
||||||
*/
|
*/
|
||||||
extern PAssign* pform_compressed_assign_from_inc_dec(const struct vlltype&loc,
|
extern PAssign* pform_compressed_assign_from_inc_dec(const struct vlltype&loc,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue