Fix space errors in various files
This commit is contained in:
parent
0d61f7384d
commit
4313fbbf1f
|
|
@ -325,11 +325,4 @@ AC_MSG_ERROR(cannot configure white space in libdir: $libdir)
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT(ok)
|
AC_MSG_RESULT(ok)
|
||||||
|
|
||||||
# XXX disable tgt-fpga for the moment
|
|
||||||
|
|
||||||
#
|
|
||||||
# Ensure compiler target options go in...
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
AC_OUTPUT(Makefile ivlpp/Makefile vhdlpp/Makefile vvp/Makefile vpi/Makefile driver/Makefile driver-vpi/Makefile cadpli/Makefile libveriuser/Makefile tgt-null/Makefile tgt-stub/Makefile tgt-vvp/Makefile tgt-vhdl/Makefile tgt-fpga/Makefile tgt-verilog/Makefile tgt-pal/Makefile tgt-vlog95/Makefile tgt-pcb/Makefile)
|
AC_OUTPUT(Makefile ivlpp/Makefile vhdlpp/Makefile vvp/Makefile vpi/Makefile driver/Makefile driver-vpi/Makefile cadpli/Makefile libveriuser/Makefile tgt-null/Makefile tgt-stub/Makefile tgt-vvp/Makefile tgt-vhdl/Makefile tgt-fpga/Makefile tgt-verilog/Makefile tgt-pal/Makefile tgt-vlog95/Makefile tgt-pcb/Makefile)
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
%{
|
%{
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001-2011 Stephen Williams (steve@icarus.com)
|
* Copyright (c) 2001-2012 Stephen Williams (steve@icarus.com)
|
||||||
*
|
*
|
||||||
* This source code is free software; you can redistribute it
|
* This source code is free software; you can redistribute it
|
||||||
* and/or modify it in source code form under the terms of the GNU
|
* and/or modify it in source code form under the terms of the GNU
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
%{
|
%{
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001-2011 Stephen Williams (steve@icarus.com)
|
* Copyright (c) 2001-2012 Stephen Williams (steve@icarus.com)
|
||||||
*
|
*
|
||||||
* This source code is free software; you can redistribute it
|
* This source code is free software; you can redistribute it
|
||||||
* and/or modify it in source code form under the terms of the GNU
|
* and/or modify it in source code form under the terms of the GNU
|
||||||
|
|
@ -633,7 +633,6 @@ statement
|
||||||
T_NUMBER T_NUMBER T_NUMBER ',' T_SYMBOL ';'
|
T_NUMBER T_NUMBER T_NUMBER ',' T_SYMBOL ';'
|
||||||
{ compile_scope_decl($1, $3, $5, $6, $14, $7, $8, $10, $11, $12); }
|
{ compile_scope_decl($1, $3, $5, $6, $14, $7, $8, $10, $11, $12); }
|
||||||
|
|
||||||
|
|
||||||
/* Legacy declaration that does not have `celldefine information. */
|
/* Legacy declaration that does not have `celldefine information. */
|
||||||
|
|
||||||
| T_LABEL K_SCOPE T_SYMBOL ',' T_STRING T_STRING T_NUMBER T_NUMBER ','
|
| T_LABEL K_SCOPE T_SYMBOL ',' T_STRING T_STRING T_NUMBER T_NUMBER ','
|
||||||
|
|
@ -657,7 +656,8 @@ statement
|
||||||
|
|
||||||
/* Port information for scopes... currently this is just meta-data for VPI queries */
|
/* Port information for scopes... currently this is just meta-data for VPI queries */
|
||||||
| K_PORT_INFO T_NUMBER port_type T_NUMBER T_STRING
|
| K_PORT_INFO T_NUMBER port_type T_NUMBER T_STRING
|
||||||
{ compile_port_info( $2 /* port_index */, $3, $4 /* width */, $5 /*&name */ ); }
|
{ compile_port_info( $2 /* port_index */, $3, $4 /* width */,
|
||||||
|
$5 /*&name */ ); }
|
||||||
|
|
||||||
| K_TIMESCALE T_NUMBER T_NUMBER';'
|
| K_TIMESCALE T_NUMBER T_NUMBER';'
|
||||||
{ compile_timescale($2, $3); }
|
{ compile_timescale($2, $3); }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue