diff options
author | Sebastian Pop <pop@cri.ensmp.fr> | 2005-12-14 15:17:35 +0100 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2005-12-14 14:17:35 +0000 |
commit | ee39680c060a370438e17105cbbe72fb26374d68 (patch) | |
tree | 0631bab4dc8a2974ee3ba23363e62e9c72ae3be3 /gcc/cfgloopmanip.c | |
parent | b081e1dafb9a8caae4fbd0b80d92d45859be857d (diff) | |
download | gcc-ee39680c060a370438e17105cbbe72fb26374d68.tar.gz |
cfgloopmanip.c (lv_adjust_loop_entry_edge): Adjust the type of cond_expr parameter.
* cfgloopmanip.c (lv_adjust_loop_entry_edge): Adjust the type of
cond_expr parameter.
From-SVN: r108510
Diffstat (limited to 'gcc/cfgloopmanip.c')
-rw-r--r-- | gcc/cfgloopmanip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgloopmanip.c b/gcc/cfgloopmanip.c index 806daa789f7..c8fbe31a2a5 100644 --- a/gcc/cfgloopmanip.c +++ b/gcc/cfgloopmanip.c @@ -1404,7 +1404,7 @@ static basic_block lv_adjust_loop_entry_edge (basic_block first_head, basic_block second_head, edge e, - tree cond_expr) + void *cond_expr) { basic_block new_head = NULL; edge e1; |