Spelling fixes in comments.

This commit is contained in:
steve 2003-11-08 20:06:21 +00:00
parent 80570c7c78
commit bc0ead2842
4 changed files with 24 additions and 12 deletions

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: _pli_types.h.in,v 1.5 2003/10/29 03:28:27 steve Exp $"
#ident "$Id: _pli_types.h.in,v 1.6 2003/11/08 20:06:21 steve Exp $"
#endif
# undef HAVE_INTTYPES_H
@ -27,7 +27,7 @@
#ifdef HAVE_INTTYPES_H
/*
* If the host enhironment has the stdint.h header file,
* If the host environment has the stdint.h header file,
* then use that to size our PLI types.
*/
#ifndef __STDC_FORMAT_MACROS
@ -51,7 +51,7 @@ typedef unsigned char PLI_UBYTE8;
/*
* If we do not have the c99 stdint.h header file, then use
* configure detenction to guess the pli types ourselves.
* configure detection to guess the pli types ourselves.
*/
# define SIZEOF_UNSIGNED_LONG_LONG 8
@ -90,6 +90,9 @@ typedef unsigned char PLI_UBYTE8;
/*
* $Log: _pli_types.h.in,v $
* Revision 1.6 2003/11/08 20:06:21 steve
* Spelling fixes in comments.
*
* Revision 1.5 2003/10/29 03:28:27 steve
* Add the PLU_UINT64_FMT string for formatting output.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: compiler.h,v 1.17 2003/09/25 00:25:14 steve Exp $"
#ident "$Id: compiler.h,v 1.18 2003/11/08 20:06:21 steve Exp $"
#endif
# include <list>
@ -64,7 +64,7 @@
/*
* These are flags to enable various sorts of warnings. By default all
* the warnings are of, the -W<list> parameter arranges for each to be
* the warnings are off, the -W<list> parameter arranges for each to be
* enabled.
*/
@ -105,6 +105,9 @@ extern StringHeapLex lex_strings;
/*
* $Log: compiler.h,v $
* Revision 1.18 2003/11/08 20:06:21 steve
* Spelling fixes in comments.
*
* Revision 1.17 2003/09/25 00:25:14 steve
* Summary list of missing modules.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: ivl_target.h,v 1.122 2003/08/22 23:14:26 steve Exp $"
#ident "$Id: ivl_target.h,v 1.123 2003/11/08 20:06:21 steve Exp $"
#endif
#ifdef __cplusplus
@ -85,7 +85,7 @@ _BEGIN_DECL
* ivl_net_logic_t
* This object represents various built in logic devices. In fact,
* this includes just about every directional device that has a
* single output, including logic gates and nmos, pmos and cmon
* single output, including logic gates and nmos, pmos and cmos
* devices. There is also the occasional Icarus Verilog creation.
*
* ivl_nexus_t
@ -1232,6 +1232,9 @@ _END_DECL
/*
* $Log: ivl_target.h,v $
* Revision 1.123 2003/11/08 20:06:21 steve
* Spelling fixes in comments.
*
* Revision 1.122 2003/08/22 23:14:26 steve
* Preserve variable ranges all the way to the vpi.
*

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: netlist.h,v 1.304 2003/10/31 02:47:11 steve Exp $"
#ident "$Id: netlist.h,v 1.305 2003/11/08 20:06:21 steve Exp $"
#endif
/*
@ -86,7 +86,7 @@ class NetObj : public Attrib, public virtual LineInfo {
public:
public:
// The name of the object must be a a perallocated string. A
// The name of the object must be a permallocated string. A
// lex_strings string, for example.
explicit NetObj(NetScope*s, const char*n, unsigned npins);
virtual ~NetObj();
@ -207,7 +207,7 @@ class Link {
verinum::V init_;
// These members name the pin of the link. If the name
// has width, then the ninst_ member is the index of the
// has width, then the inst_ member is the index of the
// pin.
string name_;
unsigned inst_;
@ -322,7 +322,7 @@ class NexusSet {
class NetNode : public NetObj {
public:
// The name paramter must be a permallocated string.
// The name parameter must be a permallocated string.
explicit NetNode(NetScope*s, const char*n, unsigned npins);
virtual ~NetNode();
@ -1637,7 +1637,7 @@ class NetCAssign : public NetProc, public NetNode {
/*
* A condit represents a conditional. It has an expression to test,
* and a pair of statements to select from. If the original statement
* has empty clauses, then the NetProc for it will be a nul pointer.
* has empty clauses, then the NetProc for it will be a null pointer.
*/
class NetCondit : public NetProc {
@ -3310,6 +3310,9 @@ extern ostream& operator << (ostream&, NetNet::Type);
/*
* $Log: netlist.h,v $
* Revision 1.305 2003/11/08 20:06:21 steve
* Spelling fixes in comments.
*
* Revision 1.304 2003/10/31 02:47:11 steve
* NetEUReduce has its own dup_expr method.
*