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
a6ee4c35
Commit
a6ee4c35
authored
Nov 11, 2014
by
Christoph Mallon
Browse files
ia32: Make ia32_parse_clobber() static.
parent
dfbf842b
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/ia32/ia32_common_transform.c
View file @
a6ee4c35
...
...
@@ -378,6 +378,7 @@ static bool match_requirement(arch_register_req_t const **reqs, size_t const n_r
}
static
arch_register_req_t
const
*
ia32_make_register_req
(
ir_graph
*
irg
,
constraint_t
const
*
constraint
,
int
n_outs
,
arch_register_req_t
const
**
out_reqs
,
int
pos
);
static
arch_register_req_t
const
*
ia32_parse_clobber
(
char
const
*
clobber
);
ir_node
*
ia32_gen_ASM
(
ir_node
*
node
)
{
...
...
@@ -723,7 +724,7 @@ static arch_register_req_t const *ia32_make_register_req(ir_graph *const irg, co
return
req
;
}
const
arch_register_req_t
*
ia32_parse_clobber
(
c
onst
char
*
clobber
)
static
arch_register_req_t
const
*
ia32_parse_clobber
(
c
har
const
*
const
clobber
)
{
if
(
strcmp
(
clobber
,
"memory"
)
==
0
||
strcmp
(
clobber
,
"cc"
)
==
0
)
return
NULL
;
...
...
ir/be/ia32/ia32_common_transform.h
View file @
a6ee4c35
...
...
@@ -71,8 +71,6 @@ ir_node *ia32_gen_Proj_tls(ir_node *node);
*/
ir_node
*
ia32_gen_Unknown
(
ir_node
*
node
);
const
arch_register_req_t
*
ia32_parse_clobber
(
const
char
*
clobber
);
/**
* Checks whether other node inputs depend on the am_candidate (via mem-proj).
*/
...
...
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