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
097a68ff
Commit
097a68ff
authored
May 18, 2006
by
Michael Beck
Browse files
doxygen docu added
[r7765]
parent
2fbe2753
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irnode.h
View file @
097a68ff
...
...
@@ -105,9 +105,19 @@ void set_irn_in (ir_node *node, int arity, ir_node *in[]);
/**
* Get the n-th predecessor of a node.
* This function removes Id predecessors.
* This function automatically handles intra- and interprocedural views.
*/
ir_node
*
get_irn_n
(
const
ir_node
*
node
,
int
n
);
/**
* Get the n-th predecessor of a node in intraprocedural view.
* Can be used always if it's know that node is not a split one.
*/
ir_node
*
get_irn_intra_n
(
const
ir_node
*
node
,
int
n
);
/**
* Get the n-th predecessor of a node in interprocedural view.
*/
ir_node
*
get_irn_inter_n
(
const
ir_node
*
node
,
int
n
);
/** Replace the n-th predecessor of a node with a new one. */
...
...
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