diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEacld.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEacld.c.xml index 4afc72b93..71d85cf65 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEacld.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEacld.c.xml @@ -49,8 +49,8 @@ int $(module)acLoad(GENmodel *inModel, CKTcircuit *ckt) { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; for ( ; model != NULL; model = model->$(module)nextModel ) { /* loop through all the instances of the model */ diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEdel.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEdel.c.xml index 3aca61753..3647331d2 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEdel.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEdel.c.xml @@ -49,8 +49,8 @@ int $(module)delete(GENmodel *inModel, IFuid name, GENinstance **inInst) { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance **fast =($(module)instance**)inInst; + $(module)model *model = ($(module)model*)inModel; + $(module)instance **fast =($(module)instance**)inInst; $(module)instance **prev = NULL; $(module)instance *here; diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEload.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEload.c.xml index 34661a2c6..687ac4768 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEload.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEload.c.xml @@ -187,8 +187,8 @@ int $(module)load(GENmodel *inModel, CKTcircuit *ckt) * sparse matrix previously provided */ { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; int ChargeComputationNeeded = ((ckt->CKTmode & (MODEAC | MODETRAN | MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC))) diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEmdel.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEmdel.c.xml index 09029c833..19ae82115 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEmdel.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEmdel.c.xml @@ -49,8 +49,8 @@ int $(module)mDelete(GENmodel **inModel, IFuid modname, GENmodel *kill) { - register $(module)model **model = ($(module)model**)inModel; - register $(module)model *modfast =($(module)model*)kill; + $(module)model **model = ($(module)model**)inModel; + $(module)model *modfast =($(module)model*)kill; $(module)instance *here; $(module)instance *prev = NULL; $(module)model **oldmod; diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEpzld.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEpzld.c.xml index 3242bb6fa..b7fdcceef 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEpzld.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEpzld.c.xml @@ -50,8 +50,8 @@ int $(module)pzLoad(GENmodel *inModel, CKTcircuit *ckt, SPcomplex *s) { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; NG_IGNOREABLE(ckt); for ( ; model != NULL; model = model->$(module)nextModel ) { diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEsetup.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEsetup.c.xml index 1dca4ada5..4c5a2cfcb 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEsetup.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEsetup.c.xml @@ -55,8 +55,8 @@ int $(module)setup (SMPmatrix *matrix, GENmodel *inModel, CKTcircuit *ckt, int * * for fast matrix loading */ { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; /* loop through all the $(module) device models */ for ( ;model != NULL ;model = model->$(module)nextModel ) diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEtemp.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEtemp.c.xml index 8974b21bd..a9f73f141 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEtemp.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEtemp.c.xml @@ -55,8 +55,8 @@ int $(module)temp(GENmodel *inModel, CKTcircuit *ckt) { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; NG_IGNOREABLE(ckt); for ( ; model != NULL; model = model->$(module)nextModel ) { diff --git a/src/spicelib/devices/adms/admst/ngspiceMODULEtrunc.c.xml b/src/spicelib/devices/adms/admst/ngspiceMODULEtrunc.c.xml index 5e3931d00..c3523b973 100644 --- a/src/spicelib/devices/adms/admst/ngspiceMODULEtrunc.c.xml +++ b/src/spicelib/devices/adms/admst/ngspiceMODULEtrunc.c.xml @@ -49,8 +49,8 @@ int $(module)trunc(GENmodel *inModel, CKTcircuit *ckt, double *timeStep) { - register $(module)model *model = ($(module)model*)inModel; - register $(module)instance *here; + $(module)model *model = ($(module)model*)inModel; + $(module)instance *here; #ifdef STEPDEBUG double debugtemp;