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
ca8cd1b8
Commit
ca8cd1b8
authored
Sep 29, 2004
by
Michael Beck
Browse files
is_forking_op() added
[r4000]
parent
0fed2e71
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/ir/irnode.c
View file @
ca8cd1b8
...
...
@@ -2070,6 +2070,12 @@ ir_node *get_fragile_op_mem(ir_node *node) {
}
}
/* Returns true if the operation is a forking control flow operation. */
int
is_forking_op
(
ir_node
*
node
)
{
return
is_op_forking
(
get_irn_op
(
node
));
}
#ifdef DEBUG_libfirm
void
dump_irn
(
ir_node
*
n
)
{
int
i
,
arity
=
get_irn_arity
(
n
);
...
...
ir/ir/irnode.h
View file @
ca8cd1b8
...
...
@@ -902,6 +902,10 @@ int is_fragile_op(ir_node *node);
/** Returns the memory operand of fragile operations. */
ir_node
*
get_fragile_op_mem
(
ir_node
*
node
);
/** Returns true if the operation is a forking control flow
* operation: Cond. */
int
is_forking_op
(
ir_node
*
node
);
/*-----------------------------------------------------------------*/
/** Debug aides **/
/*-----------------------------------------------------------------*/
...
...
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