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
ee17bfcd
Commit
ee17bfcd
authored
Feb 22, 2015
by
yb9976
Browse files
Cleanup using C99.
parent
183e01e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irgopt.c
View file @
ee17bfcd
...
...
@@ -127,10 +127,8 @@ void local_optimize_graph(ir_graph *irg)
*/
static
void
opt_walker
(
ir_node
*
n
,
void
*
env
)
{
pdeq
*
waitq
=
(
pdeq
*
)
env
;
ir_node
*
optimized
;
optimized
=
optimize_in_place_2
(
n
);
pdeq
*
waitq
=
(
pdeq
*
)
env
;
ir_node
*
optimized
=
optimize_in_place_2
(
n
);
set_irn_link
(
optimized
,
NULL
);
if
(
optimized
!=
n
)
{
...
...
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