aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNick Clifton <nickc@cygnus.com>1998-12-22 15:17:13 +0000
committerNick Clifton <nickc@gcc.gnu.org>1998-12-22 15:17:13 +0000
commitcae8acdde084466caeff9409aed32489ef9e00e3 (patch)
treea91aa9d8fa86ea3ab2913dfe505dc7a143e10554 /gcc
parent34fadae065b4714459022af1ae5f73187fc09dc6 (diff)
downloadgcc-cae8acdde084466caeff9409aed32489ef9e00e3.zip
gcc-cae8acdde084466caeff9409aed32489ef9e00e3.tar.gz
gcc-cae8acdde084466caeff9409aed32489ef9e00e3.tar.bz2
Fix obvious typo that produced compile time warning.
From-SVN: r24397
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/rtlanal.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 08fef68..d483c86 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 2d03751..645946d 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. */