diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2004-11-26 19:06:07 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2004-11-26 19:06:07 +0000 |
commit | 077094ace3c976aafd620af5f4291389e0b4e0e4 (patch) | |
tree | 4cc4e92739a2336131e00a66c688110f60564244 /gcc | |
parent | 9a228f097b5cd72555cdb1e3f61ae92efd7d6b72 (diff) | |
download | gcc-077094ace3c976aafd620af5f4291389e0b4e0e4.zip gcc-077094ace3c976aafd620af5f4291389e0b4e0e4.tar.gz gcc-077094ace3c976aafd620af5f4291389e0b4e0e4.tar.bz2 |
frv-protos.h: Guard ifcvt functions declarations with BB_HEAD, not BLOCK_HEAD.
* config/frv/frv-protos.h: Guard ifcvt functions declarations with
BB_HEAD, not BLOCK_HEAD.
From-SVN: r91345
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/frv/frv-protos.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f9c828..d264229 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2004-11-26 Alexandre Oliva <aoliva@redhat.com> + * config/frv/frv-protos.h: Guard ifcvt functions declarations with + BB_HEAD, not BLOCK_HEAD. + +2004-11-26 Alexandre Oliva <aoliva@redhat.com> + * config/frv/frv.c (frv_ifcvt_modify_insn): Don't leave alone scratch insns that set a register live at the join point. diff --git a/gcc/config/frv/frv-protos.h b/gcc/config/frv/frv-protos.h index d775260..57e5d59 100644 --- a/gcc/config/frv/frv-protos.h +++ b/gcc/config/frv/frv-protos.h @@ -116,7 +116,7 @@ extern rtx frv_split_minmax (rtx *); extern rtx frv_split_abs (rtx *); extern void frv_split_double_load (rtx, rtx); extern void frv_split_double_store (rtx, rtx); -#ifdef BLOCK_HEAD +#ifdef BB_HEAD extern void frv_ifcvt_init_extra_fields (ce_if_block_t *); extern void frv_ifcvt_modify_tests (ce_if_block_t *, rtx *, rtx *); extern void frv_ifcvt_modify_multiple_tests |