summaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-19 12:43:55 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-19 12:43:55 +0000
commitca7f6516755052fa0bf535306ef1e177fdad1199 (patch)
tree44ab1abac4ea78664a7aac624e55999489833429 /gcc/loop.c
parent266fc98c3d039b846a6fec8bf5b879954f047daf (diff)
downloadgcc-ca7f6516755052fa0bf535306ef1e177fdad1199.tar.gz
Warning fixes:
* cccp.c (create_definition): Cast to U_CHAR* when assigning to one. * cppfiles.c (read_and_prescan): Likewise. Start a #define in column 0. * cpplib.c (cpp_define): Cast to U_CHAR* when assigning to one. (cpp_push_buffer): Likewise for cpp_buffer*. (do_include): Change the type of `fbeg' and `fend' to unsigned char*. (do_endif): Cast to char* when assigning to one. (do_assert): Likewise. (do_unassert): Likewise. (cpp_read_check_assertion): Change the type of `name' to U_CHAR*. Don't do unnecessary cast to char* anymore. * genrecog.c (make_insn_sequence): Cast to char** when assigning to one. Cast the first argument of bzero to PTR. * loop.c (strength_reduce): Remove unused variable `note'. * reload1.c (new_insn_chain): Cast to struct insn_chain* when assigning to one. * rtl.c (copy_rtx): Use memcpy instead of bcopy. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25860 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index 551bcf6359a..f2adbf470c1 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -4216,8 +4216,6 @@ strength_reduce (scan_start, end, loop_top, insn_count,
p != next->insn;
p = next_insn_in_loop (p, scan_start, end, loop_top))
{
- rtx note;
-
if (GET_RTX_CLASS (GET_CODE (p)) != 'i')
continue;
if (reg_mentioned_p (old_reg, PATTERN (p)))