Spelling errors.
This commit is contained in:
parent
7a5c30d297
commit
616360d751
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
#ifdef HAVE_CVS_IDENT
|
#ifdef HAVE_CVS_IDENT
|
||||||
#ident "$Id: elab_expr.cc,v 1.64 2002/09/12 15:49:43 steve Exp $"
|
#ident "$Id: elab_expr.cc,v 1.65 2002/09/18 04:08:45 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
|
|
@ -120,7 +120,7 @@ NetEBinary* PEBinary::elaborate_expr_base_(Design*des,
|
||||||
case '^':
|
case '^':
|
||||||
case '&':
|
case '&':
|
||||||
case '|':
|
case '|':
|
||||||
case 'O':
|
case 'O': // NOR (~|)
|
||||||
case 'A': // NAND (~&)
|
case 'A': // NAND (~&)
|
||||||
case 'X':
|
case 'X':
|
||||||
tmp = new NetEBBits(op_, lp, rp);
|
tmp = new NetEBBits(op_, lp, rp);
|
||||||
|
|
@ -698,7 +698,7 @@ NetExpr* PEIdent::elaborate_expr(Design*des, NetScope*scope,
|
||||||
assert(idx_ == 0);
|
assert(idx_ == 0);
|
||||||
NetExpr*i = msb_->elaborate_expr(des, scope);
|
NetExpr*i = msb_->elaborate_expr(des, scope);
|
||||||
if (msb_ && i == 0) {
|
if (msb_ && i == 0) {
|
||||||
cerr << get_line() << ": error: Unable to exaborate "
|
cerr << get_line() << ": error: Unable to elaborate "
|
||||||
"index expression `" << *msb_ << "'" << endl;
|
"index expression `" << *msb_ << "'" << endl;
|
||||||
des->errors += 1;
|
des->errors += 1;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
@ -875,6 +875,9 @@ NetExpr* PEUnary::elaborate_expr(Design*des, NetScope*scope, bool) const
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: elab_expr.cc,v $
|
* $Log: elab_expr.cc,v $
|
||||||
|
* Revision 1.65 2002/09/18 04:08:45 steve
|
||||||
|
* Spelling errors.
|
||||||
|
*
|
||||||
* Revision 1.64 2002/09/12 15:49:43 steve
|
* Revision 1.64 2002/09/12 15:49:43 steve
|
||||||
* Add support for binary nand operator.
|
* Add support for binary nand operator.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue