Support parameters in real expressions and

as real expressions, and fix multiply and
 divide with real results.
This commit is contained in:
steve
2003-05-30 02:55:32 +00:00
parent e7b3168466
commit 5903f0744c
11 changed files with 225 additions and 20 deletions
+11 -1
View File
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: target.cc,v 1.67 2003/04/22 04:48:30 steve Exp $"
#ident "$Id: target.cc,v 1.68 2003/05/30 02:55:32 steve Exp $"
#endif
# include "config.h"
@@ -334,6 +334,11 @@ void expr_scan_t::expr_creal(const NetECReal*)
"unhandled expr_creal." << endl;
}
void expr_scan_t::expr_rparam(const NetECRealParam*that)
{
expr_creal(that);
}
void expr_scan_t::expr_concat(const NetEConcat*that)
{
cerr << that->get_line() << ": expr_scan_t (" <<
@@ -414,6 +419,11 @@ void expr_scan_t::expr_binary(const NetEBinary*ex)
/*
* $Log: target.cc,v $
* Revision 1.68 2003/05/30 02:55:32 steve
* Support parameters in real expressions and
* as real expressions, and fix multiply and
* divide with real results.
*
* Revision 1.67 2003/04/22 04:48:30 steve
* Support event names as expressions elements.
*