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
5725902e
Commit
5725902e
authored
May 04, 2011
by
Christoph Mallon
Browse files
Consider that unreachble blocks might have no bitinfo.
parent
539d04f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/fp-vrp.c
View file @
5725902e
...
...
@@ -169,7 +169,8 @@ static int transfer(ir_node* const irn)
DB
((
dbg
,
LEVEL_3
,
"transfer %+F
\n
"
,
irn
));
if
(
b
->
z
==
f
)
{
/* Unreachble blocks might have no bitinfo. */
if
(
b
==
NULL
||
b
->
z
==
f
)
{
z
=
f
;
o
=
t
;
}
else
switch
(
get_irn_opcode
(
irn
))
{
...
...
Write
Preview
Supports
Markdown
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