Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
86d2632d
Commit
86d2632d
authored
Nov 17, 2014
by
Christoph Mallon
Browse files
be: Make be_set_constr_in() static.
parent
52bb5a5f
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/benode.c
View file @
86d2632d
...
...
@@ -99,7 +99,7 @@ static arch_register_req_t *allocate_reg_req(ir_graph *const irg)
return
req
;
}
void
be_set_constr_in
(
ir_node
*
node
,
int
pos
,
const
arch_register_req_t
*
req
)
static
void
be_set_constr_in
(
ir_node
*
const
node
,
int
const
pos
,
arch_register_req_t
const
*
const
req
)
{
backend_info_t
*
info
=
be_get_info
(
node
);
assert
(
pos
<
get_irn_arity
(
node
));
...
...
ir/be/benode.h
View file @
86d2632d
...
...
@@ -190,7 +190,6 @@ const arch_register_req_t *be_create_reg_req(struct obstack *obst,
* @param pos The position (@see be_set_constr_single_reg()).
* @param req The register requirements which shall be transferred.
*/
void
be_set_constr_in
(
ir_node
*
irn
,
int
pos
,
const
arch_register_req_t
*
req
);
void
be_set_constr_out
(
ir_node
*
irn
,
int
pos
,
const
arch_register_req_t
*
req
);
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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