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
d8b7e2e4
Commit
d8b7e2e4
authored
Mar 09, 2009
by
Michael Beck
Browse files
- C99 feature removed
[r25646]
parent
01078795
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/scalar_replace.c
View file @
d8b7e2e4
...
...
@@ -211,13 +211,14 @@ int is_address_taken(ir_node *sel)
break
;
case
iro_Sel
:
{
ir_entity
*
entity
=
get_Sel_entity
(
succ
);
int
res
;
ir_entity
*
entity
=
get_Sel_entity
(
succ
);
/* we can't handle unions correctly yet -> address taken */
if
(
is_Union_type
(
get_entity_owner
(
entity
)))
return
1
;
/* Check the Sel successor of Sel */
int
res
=
is_address_taken
(
succ
);
res
=
is_address_taken
(
succ
);
if
(
res
)
return
1
;
break
;
...
...
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