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
5cf92f32
Commit
5cf92f32
authored
Oct 10, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction to the patch to compile with Visual Studio.
parent
ccb5bb34
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
src/aig/gia/giaEra2.c
+1
-1
No files found.
src/aig/gia/giaEra2.c
View file @
5cf92f32
...
...
@@ -126,7 +126,7 @@ struct Gia_ManAre_t_
};
static
inline
Gia_PtrAre_t
Gia_Int2Ptr
(
unsigned
n
)
{
Gia_PtrAreInt_t
g
;
g
.
iInt
=
n
;
return
g
.
iGia
;
}
static
inline
unsigned
Gia_Ptr2Int
(
Gia_PtrAre_t
n
)
{
Gia_PtrAreInt_t
g
=
{
n
};
return
g
.
iInt
&
0x7fffffff
;
}
static
inline
unsigned
Gia_Ptr2Int
(
Gia_PtrAre_t
n
)
{
Gia_PtrAreInt_t
g
;
g
.
iGia
=
n
;
return
g
.
iInt
&
0x7fffffff
;
}
static
inline
int
Gia_ObjHasBranch0
(
Gia_ObjAre_t
*
q
)
{
return
!
q
->
nStas0
&&
(
q
->
F
[
0
].
nPage
||
q
->
F
[
0
].
nItem
);
}
static
inline
int
Gia_ObjHasBranch1
(
Gia_ObjAre_t
*
q
)
{
return
!
q
->
nStas1
&&
(
q
->
F
[
1
].
nPage
||
q
->
F
[
1
].
nItem
);
}
...
...
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