Fix space issues

This commit is contained in:
Cary R 2016-08-14 19:37:02 -07:00
parent 1d4230472a
commit 446e825ed3
3 changed files with 9 additions and 9 deletions

View File

@ -833,8 +833,8 @@ int main(int argc, char **argv)
/* Calculate the ivl_root from the path to the command. This
is necessary because of the installation process on
Windows (and using some package managers such as conda).
Mostly, it is those darn drive letters, but oh
Windows (and using some package managers such as conda).
Mostly, it is those darn drive letters, but oh
well. We know the command path is formed like this:
D:\iverilog\bin\iverilog.exe

View File

@ -121,10 +121,10 @@ const VType* calculate_subtype_array(const YYLTYPE&loc, const char*base_name,
Expression*lef = tmpr->left();
Expression*rig = tmpr->right();
return calculate_subtype_array(loc, base_name, scope,
lef,
lef,
(tmpr->direction() == ExpRange::DOWNTO
? true
: false),
? true
: false),
rig);
}

View File

@ -119,10 +119,10 @@ VTypeArray::VTypeArray(const VType*element, std::list<ExpRange*>*r, bool sv)
for (size_t idx = 0 ; idx < ranges_.size() ; idx += 1) {
ExpRange*curp = r->front();
r->pop_front();
ranges_[idx] = range_t(curp->msb(), curp->lsb(),
(curp->direction() == ExpRange::DOWNTO
? true
: false));
ranges_[idx] = range_t(curp->msb(), curp->lsb(),
(curp->direction() == ExpRange::DOWNTO
? true
: false));
}
}