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
77839c86
Commit
77839c86
authored
Dec 04, 2012
by
Matthias Braun
Browse files
small docu cleanups
parent
7be2f5b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/libfirm/irnode.h
View file @
77839c86
...
...
@@ -211,7 +211,8 @@ FIRM_API op_pin_state is_irn_pinned_in_irg(const ir_node *node);
* IR node constructor.
* Create a new IR node in irg, with an op, mode, arity and
* some incoming IR nodes.
* This constructor is used in every specific IR node constructor.
* Normally you should not use this constructor directly unless you registered
* custom opcodes. For the default opcodes firm provides specific constructors.
*
* @param db Debug info.
* @param irg IR-graph on with this new node should be constructed.
...
...
@@ -225,11 +226,6 @@ FIRM_API ir_node *new_ir_node(dbg_info *db, ir_graph *irg, ir_node *block,
ir_op
*
op
,
ir_mode
*
mode
,
int
arity
,
ir_node
*
const
*
in
);
/**
* @addtogroup Block
* @{
*/
/**
* Returns the block the node belongs to. This is only
* possible for pinned nodes or if the graph is in pinned state.
...
...
@@ -246,6 +242,11 @@ FIRM_API ir_node *get_nodes_block(const ir_node *node);
/** Sets the Block of a node. */
FIRM_API
void
set_nodes_block
(
ir_node
*
node
,
ir_node
*
block
);
/**
* @addtogroup Block
* @{
*/
/**
* Returns the position of the predecessor block pred in the inputs
* of the block block.
...
...
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