V0.9: Fix spacing issues.

This commit is contained in:
Cary R 2011-06-13 14:58:57 -07:00 committed by Stephen Williams
parent ebfe869067
commit a7645b2191
2 changed files with 5 additions and 5 deletions

View File

@ -578,10 +578,10 @@ NetExpr* PEBinary::elaborate_expr_base_lshift_(Design*des,
if (!rpc->value().is_defined()) {
if (debug_elaborate)
cerr << get_fileline() << ": debug: "
cerr << get_fileline() << ": debug: "
<< "Shift by undefined value. "
<< "Elaborate as constant 'x'." << endl;
tmp = make_const_x(expr_wid);
tmp->set_line(*this);
return tmp;
@ -680,10 +680,10 @@ NetExpr* PEBinary::elaborate_expr_base_rshift_(Design*des,
if (!rpc->value().is_defined()) {
if (debug_elaborate)
cerr << get_fileline() << ": debug: "
cerr << get_fileline() << ": debug: "
<< "Shift by undefined value. "
<< "Elaborate as constant 'x'." << endl;
tmp = make_const_x(expr_wid);
tmp->set_line(*this);
return tmp;

View File

@ -39,7 +39,7 @@ inline ivl_dll_t ivl_dlopen(const char *name, bool global_flag)
full_name, NULL);
if ((length == 0) || (length > sizeof(full_name)))
return 0;
return (void *)LoadLibrary(full_name);
}