SIMPDUPABLEXPR(3) | ABL FUNCTIONS | SIMPDUPABLEXPR(3) |
simpdupablexpr - duplicates and simplies an expression.
See the file buster/alliance/alc_origin.1.en.gz.
#include "abl101.h" chain_list ∗simpdupablexpr( Expr )
chain_list ∗Expr;
simpdupablexpr simplifies Expr.
simpdupablexpr returns a pointer to the simplied expression.
#include "abl101.h"
chain_list ∗Expr;
chain_list ∗ExprSimp;
Expr = createablbinexpr( ABL_AND,
createablatom( "'0'" ),
createablatom( "'1'" ) );
ExprSimp = simpdupablexpr( Expr );
/* displays ('0' and '1') '0' */
viewablexpr( Expr, ABL_VIEW_VHDL );
viewablexpr( ExprSimp, ABL_VIEW_VHDL );
See the file buster/alliance/alc_bug_report.1.en.gz.
October 1, 1997 | ASIM/LIP6 |