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
280c4d16
Commit
280c4d16
authored
Feb 09, 2007
by
Christian Würdig
Browse files
fixed DEL_ARR_F
parent
cd763723
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bemain.c
View file @
280c4d16
...
...
@@ -419,10 +419,13 @@ static void be_main_loop(FILE *file_handle, const char *cup_name)
/* First: initialize all birgs */
for
(
i
=
0
;
i
<
num_birgs
;
++
i
)
{
ir_graph
*
irg
=
backend_irg_list
?
backend_irg_list
[
i
]
:
get_irp_irg
(
i
);
initialize_birg
(
&
birgs
[
i
],
irg
,
&
env
);
}
DEL_ARR_F
(
irg_list
);
/* TODO: DEL_ARR_F(irg_list) will break, if list was modified by Backend ?!?! */
if
(
backend_irg_list
)
DEL_ARR_F
(
backend_irg_list
);
else
DEL_ARR_F
(
irg_list
);
/*
Get the filename for the profiling data.
...
...
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