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
7c7abb4c
Commit
7c7abb4c
authored
Dec 31, 2013
by
Christoph Mallon
Browse files
Remove superfluous parentheses.
parent
7d3e633d
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iredges.c
View file @
7c7abb4c
...
...
@@ -59,18 +59,18 @@ size_t ir_edgeset_size(const ir_edgeset_t *self);
* This abstraction is necessary since different edge kind have
* different methods of setting edges.
*/
typedef
void
(
set_edge_func_t
)
(
ir_node
*
src
,
int
pos
,
ir_node
*
tgt
);
typedef
void
set_edge_func_t
(
ir_node
*
src
,
int
pos
,
ir_node
*
tgt
);
/**
* A function that returns the "arity" of a given edge kind
* for a node.
*/
typedef
int
(
get_edge_src_arity_func_t
)
(
const
ir_node
*
src
);
typedef
int
get_edge_src_arity_func_t
(
const
ir_node
*
src
);
/**
* A function that returns the pos'th edge of a given edge kind for a node.
*/
typedef
ir_node
*
(
get_edge_src_n_func_t
)
(
const
ir_node
*
src
,
int
pos
);
typedef
ir_node
*
get_edge_src_n_func_t
(
const
ir_node
*
src
,
int
pos
);
/**
* Additional data for an edge kind.
...
...
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