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
ba118230
Commit
ba118230
authored
Apr 19, 2007
by
Christian Würdig
Browse files
added cast to avoid compiler warning
[r13413]
parent
1aae5548
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/beblocksched.c
View file @
ba118230
...
...
@@ -541,7 +541,7 @@ static void coalesce_blocks_ilp(blocksched_ilp_env_t *env)
if
(
is_Bad
(
get_Block_cfgpred
(
block
,
0
)))
continue
;
is_jump
=
lpp_get_var_sol
(
env
->
lpp
,
edge
->
ilpvar
);
is_jump
=
(
int
)
lpp_get_var_sol
(
env
->
lpp
,
edge
->
ilpvar
);
if
(
is_jump
)
continue
;
...
...
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