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
5eb10241
Commit
5eb10241
authored
Feb 22, 2007
by
Matthias Braun
Browse files
disabled a verify warning which wasn't always correct
parent
911aeb8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ir/be/bespillslots.c
View file @
5eb10241
...
...
@@ -5,7 +5,7 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
#include
"
config.h
"
#include
<
config.h
>
#endif
#include <stdlib.h>
...
...
ir/be/beverify.c
View file @
5eb10241
...
...
@@ -442,9 +442,12 @@ static void collect(be_verify_spillslots_env_t *env, ir_node *node, ir_node *rel
}
else
if
(
is_Phi
(
node
)
&&
get_irn_mode
(
node
)
==
mode_M
)
{
collect_memphi
(
env
,
node
,
reload
,
ent
);
}
else
{
// Disabled for now, spills might get transformed by the backend
#if 0
ir_fprintf(stderr, "Verify warning: No spill, memperm or memphi attached to node %+F found from node %+F in block %+F(%s)\n",
node, reload, get_nodes_block(node), get_irg_dump_name(env->irg));
env->problem_found = 1;
#endif
}
}
...
...
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