From 2c641110e905966e02844593cbaf09dfd73f5da4 Mon Sep 17 00:00:00 2001 From: nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> Date: Tue, 22 Dec 1998 15:17:13 +0000 Subject: [PATCH] Fix obvious typo that produced compile time warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24397 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/rtlanal.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 08fef6852799..d483c86e02b3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 22 15:15:45 1998 Nick Clifton <nickc@cygnus.com> + + * rtlanal.c (multiple_sets): Change type of 'found' from 'rtx' to + 'int'. + Tue Dec 22 13:55:44 1998 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr> * halfpic.c (half_pic_encode): Delete redundant code. diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 2d03751f8a65..645946da4924 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -698,7 +698,7 @@ int multiple_sets (insn) rtx insn; { - rtx found; + int found; int i; /* INSN must be an insn. */ -- GitLab