Show unary subexpressions.
This commit is contained in:
parent
6733f7625b
commit
e95a902b3d
|
|
@ -17,7 +17,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#if !defined(WINNT) && !defined(macintosh)
|
#if !defined(WINNT) && !defined(macintosh)
|
||||||
#ident "$Id: stub.c,v 1.51 2001/12/15 02:13:17 steve Exp $"
|
#ident "$Id: stub.c,v 1.52 2002/04/14 02:44:53 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
|
|
@ -87,6 +87,7 @@ static void show_expression(ivl_expr_t net, unsigned ind)
|
||||||
case IVL_EX_UNARY:
|
case IVL_EX_UNARY:
|
||||||
fprintf(out, "%*s<unary \"%c\" width=%u, %s>\n", ind, "",
|
fprintf(out, "%*s<unary \"%c\" width=%u, %s>\n", ind, "",
|
||||||
ivl_expr_opcode(net), width, sign);
|
ivl_expr_opcode(net), width, sign);
|
||||||
|
show_expression(ivl_expr_oper1(net), ind+4);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
@ -606,6 +607,9 @@ int target_design(ivl_design_t des)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: stub.c,v $
|
* $Log: stub.c,v $
|
||||||
|
* Revision 1.52 2002/04/14 02:44:53 steve
|
||||||
|
* Show unary subexpressions.
|
||||||
|
*
|
||||||
* Revision 1.51 2001/12/15 02:13:17 steve
|
* Revision 1.51 2001/12/15 02:13:17 steve
|
||||||
* The IVL_SIT_WIRE type does not exist, it is a
|
* The IVL_SIT_WIRE type does not exist, it is a
|
||||||
* synonym for IVL_SIT_TRI.
|
* synonym for IVL_SIT_TRI.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue