Fix netlist changes netnames randomly when netnames come from power pins invisible connected together but having different names.

This commit is contained in:
jean-pierre charras 2015-08-31 10:44:27 +02:00
parent f7f7e3e918
commit 545d127a1c
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ static bool evalLabelsPriority( const NETLIST_OBJECT* aLabel1,
// and for a given path length, by alphabetic order // and for a given path length, by alphabetic order
if( aLabel1->m_Type == NET_PINLABEL || aLabel1->m_Type == NET_GLOBLABEL ) if( aLabel1->m_Type == NET_PINLABEL || aLabel1->m_Type == NET_GLOBLABEL )
return aLabel1->m_Label.Cmp( aLabel2->m_Label ); return aLabel1->m_Label.Cmp( aLabel2->m_Label ) < 0;
// not global: names are prefixed by their sheetpath // not global: names are prefixed by their sheetpath
// use name defined in higher hierarchical sheet // use name defined in higher hierarchical sheet