mirror of https://github.com/YosysHQ/abc.git
Making changes suggested by Mark Jarvin.
This commit is contained in:
parent
eacfad7622
commit
a1ceb7617c
3
Makefile
3
Makefile
|
|
@ -1,7 +1,6 @@
|
|||
CC := gcc
|
||||
CXX := g++
|
||||
LD := g++
|
||||
CP := cp
|
||||
|
||||
PROG := abc
|
||||
|
||||
|
|
@ -40,7 +39,7 @@ OPTFLAGS := -g -O #-DABC_NAMESPACE=xxx
|
|||
CFLAGS += -Wall -Wno-unused-function $(OPTFLAGS) $(ARCHFLAGS) -I$(PWD)/src
|
||||
|
||||
#ifeq ($(shell $(CC) -dumpversion | awk '{FS="."; print ($$1>=4 && $$2>=6)}'),1)
|
||||
# Set -Wno-unused-bug-set-variable for GCC 4.6.0 and greater only
|
||||
# Set -Wno-unused-but-set-variable for GCC 4.6.0 and greater only
|
||||
CFLAGS += -Wno-unused-but-set-variable
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1558,7 +1558,7 @@ ddSymmGroupMoveBackward(
|
|||
int x,
|
||||
int y)
|
||||
{
|
||||
int size;
|
||||
int size = -1;
|
||||
int i,j;
|
||||
int xtop,xbot,xsize,ytop,ybot,ysize,newxtop;
|
||||
|
||||
|
|
|
|||
|
|
@ -1590,7 +1590,7 @@ zdd_group_move_backward(
|
|||
int x,
|
||||
int y)
|
||||
{
|
||||
int size;
|
||||
int size = -1;
|
||||
int i, temp, gxtop, gxbot, gybot, yprev;
|
||||
|
||||
#ifdef DD_DEBUG
|
||||
|
|
|
|||
Loading…
Reference in New Issue