Remove space issues
This commit is contained in:
parent
8ae15b93cf
commit
4b805a2b89
|
|
@ -186,7 +186,7 @@ ifeq (@WIN32@,yes)
|
|||
ivl@EXEEXT@: $O $(srcdir)/ivl.def
|
||||
$(CXX) -o ivl@EXEEXT@ $O $(dllib) @EXTRALIBS@
|
||||
$(DLLTOOL) --dllname ivl@EXEEXT@ --def $(srcdir)/ivl.def \
|
||||
--output-lib libivl.a --output-exp ivl.exp
|
||||
--output-lib libivl.a --output-exp ivl.exp
|
||||
$(CXX) $(LDFLAGS) -o ivl@EXEEXT@ ivl.exp $O $(dllib) @EXTRALIBS@
|
||||
else
|
||||
ivl@EXEEXT@: $O
|
||||
|
|
|
|||
4
parse.y
4
parse.y
|
|
@ -2636,7 +2636,7 @@ var_type
|
|||
;
|
||||
|
||||
param_type
|
||||
:
|
||||
:
|
||||
{ param_active_range = 0;
|
||||
param_active_signed = false;
|
||||
param_active_type = IVL_VT_LOGIC;
|
||||
|
|
@ -2687,7 +2687,7 @@ param_type
|
|||
}
|
||||
;
|
||||
|
||||
/* parameter and localparam assignment lists are broken into
|
||||
/* parameter and localparam assignment lists are broken into
|
||||
separate BNF so that I can call slightly different parameter
|
||||
handling code. localparams parse the same as parameters, they
|
||||
just behave differently when someone tries to override them. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue