Make seen_nexus private
This commit is contained in:
parent
a842b327c7
commit
48c1a7982c
|
|
@ -254,7 +254,7 @@ void draw_nexus(ivl_nexus_t nexus)
|
|||
* Ensure that a nexus has been initialised. I.e. all the necessary
|
||||
* statements, declarations, etc. have been generated.
|
||||
*/
|
||||
void seen_nexus(ivl_nexus_t nexus)
|
||||
static void seen_nexus(ivl_nexus_t nexus)
|
||||
{
|
||||
if (ivl_nexus_get_private(nexus) == NULL) {
|
||||
cout << "first time we've seen nexus "
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@ vhdl_entity *get_active_entity();
|
|||
void set_active_entity(vhdl_entity *ent);
|
||||
|
||||
vhdl_var_ref *nexus_to_var_ref(vhdl_scope *arch_scope, ivl_nexus_t nexus);
|
||||
void seen_nexus(ivl_nexus_t nexus);
|
||||
|
||||
bool seen_signal_before(ivl_signal_t sig);
|
||||
void remember_signal(ivl_signal_t sig, vhdl_scope *scope);
|
||||
|
|
|
|||
Loading…
Reference in New Issue