[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.1-20081221-161-ga838dec)



The branch, master has been updated
       via  a838dece88323eb782b0ac301c5825ed693fbf0f (commit)
      from  d18bfe1738347a1546f5bf1dd5011fb796176de1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 gnetlist/src/s_traverse.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


=================
 Commit Messages
=================

commit a838dece88323eb782b0ac301c5825ed693fbf0f
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Fri Jan 9 00:57:40 2009 +0000

    gnetlist: Disable traversal of bus pins when checking connectivity.
    
    We don't want graphical buses to be netlisted at present. Currently
    their output (although not correct connectivity in all but simple
    cases) can get muddled up with the normal netlist fed to backends.

:100644 100644 11fffbd... 31ba9ef... M	gnetlist/src/s_traverse.c

=========
 Changes
=========

commit a838dece88323eb782b0ac301c5825ed693fbf0f
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Fri Jan 9 00:57:40 2009 +0000

    gnetlist: Disable traversal of bus pins when checking connectivity.
    
    We don't want graphical buses to be netlisted at present. Currently
    their output (although not correct connectivity in all but simple
    cases) can get muddled up with the normal netlist fed to backends.

diff --git a/gnetlist/src/s_traverse.c b/gnetlist/src/s_traverse.c
index 11fffbd..31ba9ef 100644
--- a/gnetlist/src/s_traverse.c
+++ b/gnetlist/src/s_traverse.c
@@ -278,7 +278,9 @@ CPINLIST *s_traverse_component(TOPLEVEL * pr_current, OBJECT * component,
        iter = g_list_next (iter)) {
     OBJECT *o_current = iter->data;
 
-    if (o_current->type != OBJ_PIN)
+    /* Ignore objects which aren't net pins */
+    if (o_current->type != OBJ_PIN ||
+        o_current->pin_type != PIN_TYPE_NET)
       continue;
 
     /* add cpin node */




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs