More spelling, comments only

This commit is contained in:
Larry Doolittle 2016-03-15 22:27:03 -07:00 committed by Stephen Williams
parent 89edf62206
commit 4521be4510
7 changed files with 10 additions and 10 deletions

View File

@ -19,7 +19,7 @@
/* /*
* This is a simple program to make a dosified copy of the * This is a simple program to make a dosified copy of the
* original. That is, it converts unix style line ends to DOS * original. That is, it converts Unix style line ends to DOS
* style. This is useful for installing text files. * style. This is useful for installing text files.
* *
* The exact substitution is to replace \n with \r\n. If the line * The exact substitution is to replace \n with \r\n. If the line

View File

@ -68,7 +68,7 @@ void dll_target::sub_off_from_expr_(long off)
off >>= 1; off >>= 1;
} }
/* Now make the subtractor (x-4 in the above example) /* Now make the subtracter (x-4 in the above example)
that has as input A the index expression and input B that has as input A the index expression and input B
the constant to subtract. */ the constant to subtract. */
ivl_expr_t tmps = (ivl_expr_t)calloc(1, sizeof(struct ivl_expr_s)); ivl_expr_t tmps = (ivl_expr_t)calloc(1, sizeof(struct ivl_expr_s));
@ -104,7 +104,7 @@ void dll_target::mul_expr_by_const_(long val)
val >>= 1; val >>= 1;
} }
/* Now make the subtractor (x-4 in the above example) /* Now make the subtracter (x-4 in the above example)
that has as input A the index expression and input B that has as input A the index expression and input B
the constant to subtract. */ the constant to subtract. */
ivl_expr_t tmps = (ivl_expr_t)calloc(1, sizeof(struct ivl_expr_s)); ivl_expr_t tmps = (ivl_expr_t)calloc(1, sizeof(struct ivl_expr_s));

View File

@ -270,7 +270,7 @@ class StatementList : public Architecture::Statement {
std::list<SequentialStmt*> statements_; std::list<SequentialStmt*> statements_;
}; };
// There is no direct VHDL countepart to SV 'initial' statement, // There is no direct VHDL counterpart to SV 'initial' statement,
// but we can still use it during the translation process. // but we can still use it during the translation process.
class InitialStatement : public StatementList { class InitialStatement : public StatementList {
public: public:
@ -281,7 +281,7 @@ class InitialStatement : public StatementList {
void dump(ostream&out, int indent =0) const; void dump(ostream&out, int indent =0) const;
}; };
// There is no direct VHDL countepart to SV 'final' statement, // There is no direct VHDL counterpart to SV 'final' statement,
// but we can still use it during the translation process. // but we can still use it during the translation process.
class FinalStatement : public StatementList { class FinalStatement : public StatementList {
public: public:

View File

@ -247,7 +247,7 @@ int CondSignalAssignment::elaborate(Entity*ent, Architecture*arc)
{ {
int errors = 0; int errors = 0;
// Visitor to extract signal names occuring in the conditional // Visitor to extract signal names occurring in the conditional
// statements to create the sensitivity list // statements to create the sensitivity list
struct name_extractor_t : public ExprVisitor { struct name_extractor_t : public ExprVisitor {
name_extractor_t(list<const ExpName*>& name_list) name_extractor_t(list<const ExpName*>& name_list)

View File

@ -36,7 +36,7 @@ extern StringHeapLex lex_strings;
// Stores file names // Stores file names
extern StringHeapLex filename_strings; extern StringHeapLex filename_strings;
// Stores generated strigns (e.g. scope names) // Stores generated strings (e.g. scope names)
extern StringHeapLex gen_strings; extern StringHeapLex gen_strings;
#endif /* IVL_compiler_H */ #endif /* IVL_compiler_H */

View File

@ -445,7 +445,7 @@ struct __vpiModPathSrc : public __vpiHandle {
/* /*
* *
* The vpiMoaPath vpiHandle will define * The vpiModPath vpiHandle will define
* a vpiModPath of record .modpath as defined * a vpiModPath of record .modpath as defined
* in the IEEE 1364 * in the IEEE 1364
* *

View File

@ -5061,7 +5061,7 @@ bool of_RET_VEC4(vthread_t thr, vvp_code_t cp)
return true; return true;
} }
// IF the index is below the vector, then only assign the high // If the index is below the vector, then only assign the high
// bits that overlap with the target // bits that overlap with the target
if (off < 0) { if (off < 0) {
int use_off = -off; int use_off = -off;
@ -5071,7 +5071,7 @@ bool of_RET_VEC4(vthread_t thr, vvp_code_t cp)
off = 0; off = 0;
} }
// If the value is partly above the taret, then only assign // If the value is partly above the target, then only assign
// the bits that overlap // the bits that overlap
if ((off+wid) > sig_value_size) { if ((off+wid) > sig_value_size) {
wid = sig_value_size - off; wid = sig_value_size - off;