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
9d0e828b
Commit
9d0e828b
authored
Mar 01, 2023
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing compiler error.
parent
33703701
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/base/wln/wlnBlast.c
+4
-4
No files found.
src/base/wln/wlnBlast.c
View file @
9d0e828b
...
...
@@ -72,8 +72,8 @@ void Rtl_NtkBlastNode( Gia_Man_t * pNew, int Type, int nIns, Vec_Int_t * vDatas,
extern
void
Wlc_BlastBooth
(
Gia_Man_t
*
pNew
,
int
*
pArgA
,
int
*
pArgB
,
int
nArgA
,
int
nArgB
,
Vec_Int_t
*
vRes
,
int
fSigned
,
int
fCla
,
Vec_Wec_t
**
pvProds
);
extern
void
Wlc_BlastMultiplier3
(
Gia_Man_t
*
pNew
,
int
*
pArgA
,
int
*
pArgB
,
int
nArgA
,
int
nArgB
,
Vec_Int_t
*
vRes
,
int
fSigned
,
int
fCla
,
Vec_Wec_t
**
pvProds
);
extern
void
Wlc_BlastZeroCondition
(
Gia_Man_t
*
pNew
,
int
*
pDiv
,
int
nDiv
,
Vec_Int_t
*
vRes
);
extern
void
Wlc_BlastDivider
(
Gia_Man_t
*
pNew
,
int
*
pNum
,
int
nNum
,
int
*
pDiv
,
int
nDiv
,
int
fQuo
,
Vec_Int_t
*
vRes
);
extern
void
Wlc_BlastDividerSigned
(
Gia_Man_t
*
pNew
,
int
*
pNum
,
int
nNum
,
int
*
pDiv
,
int
nDiv
,
int
fQuo
,
Vec_Int_t
*
vRes
);
extern
void
Wlc_BlastDivider
Top
(
Gia_Man_t
*
pNew
,
int
*
pNum
,
int
nNum
,
int
*
pDiv
,
int
nDiv
,
int
fQuo
,
Vec_Int_t
*
vRes
,
int
fNonRest
);
extern
void
Wlc_BlastDividerSigned
(
Gia_Man_t
*
pNew
,
int
*
pNum
,
int
nNum
,
int
*
pDiv
,
int
nDiv
,
int
fQuo
,
Vec_Int_t
*
vRes
,
int
fNonRest
);
extern
void
Wlc_BlastPower
(
Gia_Man_t
*
pNew
,
int
*
pNum
,
int
nNum
,
int
*
pExp
,
int
nExp
,
Vec_Int_t
*
vTemp
,
Vec_Int_t
*
vRes
);
int
k
,
iLit
,
iLit0
,
iLit1
;
...
...
@@ -321,9 +321,9 @@ void Rtl_NtkBlastNode( Gia_Man_t * pNew, int Type, int nIns, Vec_Int_t * vDatas,
int
fDivBy0
=
1
;
// correct with 1
int
fSigned
=
fSign0
&&
fSign1
;
if
(
fSigned
)
Wlc_BlastDividerSigned
(
pNew
,
Vec_IntArray
(
vArg0
),
nRangeMax
,
Vec_IntArray
(
vArg1
),
nRangeMax
,
Type
==
ABC_OPER_ARI_DIV
,
vRes
);
Wlc_BlastDividerSigned
(
pNew
,
Vec_IntArray
(
vArg0
),
nRangeMax
,
Vec_IntArray
(
vArg1
),
nRangeMax
,
Type
==
ABC_OPER_ARI_DIV
,
vRes
,
0
);
else
Wlc_BlastDivider
(
pNew
,
Vec_IntArray
(
vArg0
),
nRangeMax
,
Vec_IntArray
(
vArg1
),
nRangeMax
,
Type
==
ABC_OPER_ARI_DIV
,
vRes
);
Wlc_BlastDivider
Top
(
pNew
,
Vec_IntArray
(
vArg0
),
nRangeMax
,
Vec_IntArray
(
vArg1
),
nRangeMax
,
Type
==
ABC_OPER_ARI_DIV
,
vRes
,
0
);
Vec_IntShrink
(
vRes
,
nRange
);
if
(
!
fDivBy0
)
Wlc_BlastZeroCondition
(
pNew
,
Vec_IntArray
(
vArg1
),
nRange
,
vRes
);
...
...
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