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
df6a8666
Commit
df6a8666
authored
Mar 12, 2014
by
yb9976
Browse files
Removed useless if statement.
parent
30e39a61
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/iropt.c
View file @
df6a8666
...
...
@@ -6359,12 +6359,9 @@ handle_tv:;
==
IR_INITIALIZER_NULL
)
continue
;
long
new_offset
=
offset
-
member_offs
;
ir_node
*
res
=
extract_from_initializer
(
member_type
,
sub_initializer
,
new_offset
,
mode
,
dbgi
,
irg
);
if
(
res
!=
NULL
)
return
res
;
return
NULL
;
return
extract_from_initializer
(
member_type
,
sub_initializer
,
new_offset
,
mode
,
dbgi
,
irg
);
}
return
create_zero_const
(
irg
,
mode
);
}
...
...
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