Fix return of net strength value.

The calculated return value for the calculated strength value of
a net was left dangling. This patch fixes that. See pr1770199 in
the regression test suite.

Signed-off-by: Stephen Williams <steve@icarus.com>
This commit is contained in:
Stephen Williams 2007-08-10 21:51:13 -07:00
parent 5e385e901d
commit 1942899a3f
1 changed files with 1 additions and 5 deletions

View File

@ -347,6 +347,7 @@ static void signal_get_StrengthVal(struct __vpiSignal*rfp, s_vpi_value*vp)
}
}
vp->value.strength = op;
}
/*
@ -721,8 +722,3 @@ vpiHandle vpip_make_net(const char*name, int msb, int lsb,
return &obj->base;
}
/*
* $Log: vpi_signal.cc,v $
*/