Make seen_nexus private

This commit is contained in:
Nick Gasson 2008-07-29 14:24:04 +01:00
parent a842b327c7
commit 48c1a7982c
2 changed files with 1 additions and 2 deletions

View File

@ -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 "

View File

@ -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);