Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
b2b93858
Commit
b2b93858
authored
Aug 29, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings.
parent
4c5bfbe7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
src/bdd/cudd/cuddAddWalsh.c
+1
-1
src/bdd/cudd/cuddSymmetry.c
+1
-1
src/bdd/cudd/cuddZddSymm.c
+1
-1
src/map/mapper/mapperSuper.c
+1
-1
src/map/scl/sclBuff.c
+1
-1
src/map/scl/sclUtil.c
+1
-1
No files found.
src/bdd/cudd/cuddAddWalsh.c
View file @
b2b93858
...
...
@@ -302,7 +302,7 @@ addWalshInt(
int
n
)
{
DdNode
*
one
,
*
minusone
;
DdNode
*
t
,
*
u
,
*
t1
,
*
u1
,
*
v
,
*
w
;
DdNode
*
t
=
NULL
,
*
u
=
NULL
,
*
t1
,
*
u1
,
*
v
,
*
w
;
int
i
;
one
=
DD_ONE
(
dd
);
...
...
src/bdd/cudd/cuddSymmetry.c
View file @
b2b93858
...
...
@@ -1630,7 +1630,7 @@ ddSymmSiftingBackward(
int
size
)
{
Move
*
move
;
int
res
;
int
res
=
-
1
;
for
(
move
=
moves
;
move
!=
NULL
;
move
=
move
->
next
)
{
if
(
move
->
size
<
size
)
{
...
...
src/bdd/cudd/cuddZddSymm.c
View file @
b2b93858
...
...
@@ -1434,7 +1434,7 @@ cuddZddSymmSiftingBackward(
int
i
;
int
i_best
;
Move
*
move
;
int
res
;
int
res
=
-
1
;
i_best
=
-
1
;
for
(
move
=
moves
,
i
=
0
;
move
!=
NULL
;
move
=
move
->
next
,
i
++
)
{
...
...
src/map/mapper/mapperSuper.c
View file @
b2b93858
...
...
@@ -80,7 +80,7 @@ int Map_LibraryRead( Map_SuperLib_t * pLib, char * pFileName )
int
Map_LibraryReadFile
(
Map_SuperLib_t
*
pLib
,
FILE
*
pFile
)
{
ProgressBar
*
pProgress
;
char
pBuffer
[
2
000
];
char
pBuffer
[
5
000
];
FILE
*
pFileGen
;
Map_Super_t
*
pGate
;
char
*
pTemp
=
NULL
;
// Suppress "might be used uninitialized"
...
...
src/map/scl/sclBuff.c
View file @
b2b93858
...
...
@@ -78,7 +78,7 @@ int Abc_SclCheckNtk( Abc_Ntk_t * p, int fVerbose )
int
Abc_SclCheckNtk2
(
Abc_Ntk_t
*
p
)
{
Abc_Obj_t
*
pObj
,
*
pFanout
;
int
i
,
k
,
fFlag
=
0
;
int
i
,
k
;
Abc_NtkStartReverseLevels
(
p
,
0
);
Abc_NtkForEachNode
(
p
,
pObj
,
i
)
{
...
...
src/map/scl/sclUtil.c
View file @
b2b93858
...
...
@@ -104,7 +104,7 @@ static int Abc_SclCompareCells( SC_Cell ** pp1, SC_Cell ** pp2 )
}
void
Abc_SclLinkCells
(
SC_Lib
*
p
)
{
SC_Cell
*
pCell
,
*
pRepr
;
SC_Cell
*
pCell
,
*
pRepr
=
NULL
;
int
i
,
k
;
assert
(
Vec_PtrSize
(
p
->
vCellOrder
)
==
0
);
SC_LitForEachCell
(
p
,
pCell
,
i
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment