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
665a4dcf
Commit
665a4dcf
authored
May 05, 2011
by
Matthias Braun
Browse files
opt_inline: fix uninitialized memory usage
parent
27177e29
Changes
1
Show whitespace changes
Inline
Side-by-side
ir/opt/opt_inline.c
View file @
665a4dcf
...
...
@@ -1639,6 +1639,7 @@ static void inline_into(ir_graph *irg, unsigned maxsize,
set_irg_link
(
copy
,
callee_env
);
assure_cf_loop
(
copy
);
memset
(
&
wenv
,
0
,
sizeof
(
wenv
));
wenv
.
x
=
callee_env
;
wenv
.
ignore_callers
=
1
;
irg_walk_graph
(
copy
,
NULL
,
collect_calls2
,
&
wenv
);
...
...
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