Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
bbcab952
Commit
bbcab952
authored
Feb 21, 2007
by
Christian Würdig
Browse files
added USES_PENDING
parent
dc22b2c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beuses.h
View file @
bbcab952
...
...
@@ -20,12 +20,18 @@ typedef struct _be_next_use_t {
}
be_next_use_t
;
#define USES_INFINITY 10000000
#define USES_PENDING 9999999
static
INLINE
int
USES_IS_INFINITE
(
unsigned
time
)
{
return
time
>=
USES_INFINITY
;
}
static
INLINE
int
USES_IS_PENDING
(
unsigned
time
)
{
return
time
==
USES_PENDING
;
}
typedef
struct
_be_uses_t
be_uses_t
;
be_next_use_t
be_get_next_use
(
be_uses_t
*
uses
,
ir_node
*
from
,
...
...
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