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
e2f245fd
Commit
e2f245fd
authored
Aug 14, 2006
by
Matthias Braun
Browse files
- don't use C99isms
parent
61ba7055
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beverify.c
View file @
e2f245fd
...
...
@@ -420,13 +420,15 @@ static void collect_spills_walker(ir_node *node, void *data) {
if
(
arch_irn_class_is
(
arch_env
,
node
,
reload
))
{
ir_node
*
spill
=
get_memory_edge
(
node
);
entity
*
ent
;
if
(
spill
==
NULL
)
{
ir_fprintf
(
stderr
,
"Verify warning: No spill attached to reload %+F in block %+F(%s)
\n
"
,
node
,
get_nodes_block
(
node
),
get_irg_dump_name
(
env
->
irg
));
env
->
problem_found
=
1
;
return
;
}
entity
*
ent
=
arch_get_frame_entity
(
env
->
arch_env
,
node
);
ent
=
arch_get_frame_entity
(
env
->
arch_env
,
node
);
check_entity
(
env
,
node
,
ent
);
collect
(
env
,
spill
,
node
,
ent
);
...
...
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