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
8b7059c5
Commit
8b7059c5
authored
Jun 30, 2010
by
Matthias Braun
Browse files
avoid warning when building without ILP
[r27682]
parent
3d4dd629
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/becopystat.c
View file @
8b7059c5
...
...
@@ -177,14 +177,6 @@ void copystat_add_heur_costs(int costs)
{
curr_vals
[
I_COPIES_HEUR
]
+=
costs
;
}
void
copystat_add_ilp_5_sec_costs
(
int
costs
)
{
curr_vals
[
I_COPIES_5SEC
]
+=
costs
;
}
void
copystat_add_ilp_30_sec_costs
(
int
costs
)
{
curr_vals
[
I_COPIES_30SEC
]
+=
costs
;
}
void
copystat_add_opt_costs
(
int
costs
)
{
curr_vals
[
I_COPIES_OPT
]
+=
costs
;
...
...
@@ -196,6 +188,14 @@ void copystat_add_heur_time(int time)
#ifdef WITH_ILP
void
copystat_add_ilp_5_sec_costs
(
int
costs
)
{
curr_vals
[
I_COPIES_5SEC
]
+=
costs
;
}
void
copystat_add_ilp_30_sec_costs
(
int
costs
)
{
curr_vals
[
I_COPIES_30SEC
]
+=
costs
;
}
void
copystat_add_ilp_time
(
int
time
)
{
curr_vals
[
I_ILP_TIME
]
+=
time
;
...
...
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