Harmless cleanup of comments / initialization warnings.
This commit is contained in:
parent
255922e545
commit
11682fc7eb
|
|
@ -175,7 +175,9 @@ data_type_t* pform_test_type_identifier(PPackage*pkg, const char*txt)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The lexor uses this function to know if the
|
* The lexor uses this function to know if the identifier names the
|
||||||
|
* package. It will call this a PACKAGE_IDENTIFIER token in that case,
|
||||||
|
* instead of a generic IDENTIFIER.
|
||||||
*/
|
*/
|
||||||
PPackage* pform_test_package_identifier(const char*pkg_name)
|
PPackage* pform_test_package_identifier(const char*pkg_name)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -443,7 +443,7 @@ int ExpAggregate::elaborate_expr_array_(Entity*ent, Architecture*arc, const VTyp
|
||||||
// associated with them.
|
// associated with them.
|
||||||
aggregate_[cdx].choice = 0;
|
aggregate_[cdx].choice = 0;
|
||||||
aggregate_[cdx].expr = ecur->extract_expression();
|
aggregate_[cdx].expr = ecur->extract_expression();
|
||||||
aggregate_[cdx].alias_flag;
|
aggregate_[cdx].alias_flag = false;
|
||||||
cdx += 1;
|
cdx += 1;
|
||||||
} else {
|
} else {
|
||||||
ecur->map_choices(&aggregate_[cdx]);
|
ecur->map_choices(&aggregate_[cdx]);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue