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
af4c4bce
Commit
af4c4bce
authored
Feb 07, 2007
by
Christian Würdig
Browse files
Unknowns don't need a register assigned
parent
dc43fa9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beverify.c
View file @
af4c4bce
...
...
@@ -622,6 +622,9 @@ static void check_register_constraints(ir_node *node, be_verify_register_allocat
for
(
i
=
0
;
i
<
arity
;
++
i
)
{
ir_node
*
pred
=
get_irn_n
(
node
,
i
);
if
(
is_Unknown
(
pred
))
continue
;
if
(
is_Bad
(
pred
))
{
ir_fprintf
(
stderr
,
"Verify warning: %+F in block %+F(%s) has Bad as input %d
\n
"
,
node
,
get_nodes_block
(
node
),
get_irg_dump_name
(
env
->
irg
),
i
);
...
...
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