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
d6e8eefb
Commit
d6e8eefb
authored
Jun 11, 2013
by
Matthias Braun
Browse files
bemain: fix strange statev output
parent
4664780a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/bemain.c
View file @
d6e8eefb
...
...
@@ -600,7 +600,11 @@ static void be_main_loop(FILE *file_handle, const char *cup_name)
be_timer_pop
(
T_VERIFY
);
}
stat_ev_dbl
(
"bemain_costs_before_ra"
,
be_estimate_irg_costs
(
irg
));
if
(
stat_ev_enabled
)
{
stat_ev_dbl
(
"bemain_costs_after_ra"
,
be_estimate_irg_costs
(
irg
));
stat_ev_ull
(
"bemain_insns_after_ra"
,
be_count_insns
(
irg
));
stat_ev_ull
(
"bemain_blocks_after_ra"
,
be_count_blocks
(
irg
));
}
be_dump
(
DUMP_RA
,
irg
,
"ra"
);
...
...
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