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
9f46984c
Commit
9f46984c
authored
Apr 28, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings.
parent
534ebbc7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
src/aig/miniaig/miniaig.h
+6
-6
src/aig/miniaig/minilut.h
+10
-10
No files found.
src/aig/miniaig/miniaig.h
View file @
9f46984c
...
...
@@ -171,9 +171,9 @@ static void Mini_AigDump( Mini_Aig_t * p, char * pFileName )
printf
(
"Cannot open file for writing
\"
%s
\"
.
\n
"
,
pFileName
);
return
;
}
RetValue
=
fwrite
(
&
p
->
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fwrite
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fwrite
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
,
pFile
);
RetValue
=
(
int
)
fwrite
(
&
p
->
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fwrite
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fwrite
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
,
pFile
);
fclose
(
pFile
);
}
static
Mini_Aig_t
*
Mini_AigLoad
(
char
*
pFileName
)
...
...
@@ -187,12 +187,12 @@ static Mini_Aig_t * Mini_AigLoad( char * pFileName )
printf
(
"Cannot open file for reading
\"
%s
\"
.
\n
"
,
pFileName
);
return
NULL
;
}
RetValue
=
fread
(
&
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fread
(
&
nSize
,
sizeof
(
int
),
1
,
pFile
);
p
=
MINI_AIG_CALLOC
(
Mini_Aig_t
,
1
);
p
->
nSize
=
p
->
nCap
=
nSize
;
p
->
pArray
=
MINI_AIG_ALLOC
(
int
,
p
->
nCap
);
RetValue
=
fread
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fread
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
,
pFile
);
RetValue
=
(
int
)
fread
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fread
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
,
pFile
);
fclose
(
pFile
);
return
p
;
}
...
...
src/aig/miniaig/minilut.h
View file @
9f46984c
...
...
@@ -191,11 +191,11 @@ static void Mini_LutDump( Mini_Lut_t * p, char * pFileName )
printf
(
"Cannot open file for writing
\"
%s
\"
.
\n
"
,
pFileName
);
return
;
}
RetValue
=
fwrite
(
&
p
->
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fwrite
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fwrite
(
&
p
->
LutSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fwrite
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
*
p
->
LutSize
,
pFile
);
RetValue
=
fwrite
(
p
->
pTruths
,
sizeof
(
int
),
p
->
nSize
*
Mini_LutWordNum
(
p
->
LutSize
),
pFile
);
RetValue
=
(
int
)
fwrite
(
&
p
->
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fwrite
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fwrite
(
&
p
->
LutSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fwrite
(
p
->
pArray
,
sizeof
(
int
),
p
->
nSize
*
p
->
LutSize
,
pFile
);
RetValue
=
(
int
)
fwrite
(
p
->
pTruths
,
sizeof
(
int
),
p
->
nSize
*
Mini_LutWordNum
(
p
->
LutSize
),
pFile
);
fclose
(
pFile
);
}
static
Mini_Lut_t
*
Mini_LutLoad
(
char
*
pFileName
)
...
...
@@ -209,15 +209,15 @@ static Mini_Lut_t * Mini_LutLoad( char * pFileName )
printf
(
"Cannot open file for reading
\"
%s
\"
.
\n
"
,
pFileName
);
return
NULL
;
}
RetValue
=
fread
(
&
nSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fread
(
&
nSize
,
sizeof
(
int
),
1
,
pFile
);
p
=
MINI_LUT_CALLOC
(
Mini_Lut_t
,
1
);
p
->
nSize
=
p
->
nCap
=
nSize
;
RetValue
=
fread
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fread
(
&
p
->
LutSize
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fread
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
(
int
)
fread
(
&
p
->
LutSize
,
sizeof
(
int
),
1
,
pFile
);
p
->
pArray
=
MINI_LUT_ALLOC
(
int
,
p
->
nCap
*
p
->
LutSize
);
p
->
pTruths
=
MINI_LUT_ALLOC
(
unsigned
,
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
)
);
RetValue
=
fread
(
p
->
pArray
,
sizeof
(
int
),
p
->
nCap
*
p
->
LutSize
,
pFile
);
RetValue
=
fread
(
p
->
pTruths
,
sizeof
(
int
),
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
),
pFile
);
RetValue
=
(
int
)
fread
(
p
->
pArray
,
sizeof
(
int
),
p
->
nCap
*
p
->
LutSize
,
pFile
);
RetValue
=
(
int
)
fread
(
p
->
pTruths
,
sizeof
(
int
),
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
),
pFile
);
fclose
(
pFile
);
return
p
;
}
...
...
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