From a21a2fd1b0fb875304f39f0039ee73e0ccbd2bd6 Mon Sep 17 00:00:00 2001 From: rlar Date: Thu, 9 Mar 2017 21:41:10 +0100 Subject: [PATCH] inp2q.c, #9/23, drop some TRACE code --- src/spicelib/parser/inp2q.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/spicelib/parser/inp2q.c b/src/spicelib/parser/inp2q.c index f50bc3c87..a350194c8 100644 --- a/src/spicelib/parser/inp2q.c +++ b/src/spicelib/parser/inp2q.c @@ -77,18 +77,11 @@ void INP2Q(CKTcircuit *ckt, INPtables * tab, card * current, CKTnode *gnode) /* 3-terminal device - substrate to ground */ node[3] = gnode; INPinsert(&model, tab); -#ifdef TRACE - printf("INP2Q: 3-terminal device - substrate to ground\n"); -#endif current->error = INPgetMod(ckt, model, &thismodel, tab); } else { nname[3] = model; INPtermInsert(ckt, &nname[3], tab, &node[3]); INPgetTok(&line, &model, 1); - /* See if 5th token after device specification is a model name */ -#ifdef TRACE - printf("INP2Q: checking for 4 node device\n"); -#endif if (INPlookMod(model)) { /* 4-terminal device - special case with tnodeout flag not handled */ INPinsert(&model, tab); @@ -105,10 +98,6 @@ void INP2Q(CKTcircuit *ckt, INPtables * tab, card * current, CKTnode *gnode) nodeflag = 5; /* now specify a 5 node device */ } } else { - /* 5-terminal device */ -#ifdef TRACE - printf("INP2Q: checking for 5 node device\n"); -#endif nodeflag = 5; /* now specify a 5 node device */ nname[4] = model; INPtermInsert(ckt, &nname[4], tab, &node[4]);