From a7645b21915584a86fbebf7d3316b9c12834f874 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 13 Jun 2011 14:58:57 -0700 Subject: [PATCH] V0.9: Fix spacing issues. --- elab_expr.cc | 8 ++++---- vvp/ivl_dlfcn.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/elab_expr.cc b/elab_expr.cc index ccd9d5d5e..b8ea451b3 100644 --- a/elab_expr.cc +++ b/elab_expr.cc @@ -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; diff --git a/vvp/ivl_dlfcn.h b/vvp/ivl_dlfcn.h index 1406482d7..e9c5ac2ea 100644 --- a/vvp/ivl_dlfcn.h +++ b/vvp/ivl_dlfcn.h @@ -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); }