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:
parent
5e385e901d
commit
1942899a3f
|
|
@ -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 $
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue