From cae8acdde084466caeff9409aed32489ef9e00e3 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 22 Dec 1998 15:17:13 +0000 Subject: [PATCH] Fix obvious typo that produced compile time warning. From-SVN: r24397 --- gcc/ChangeLog | 5 +++++ gcc/rtlanal.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 08fef685279..d483c86e02b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 22 15:15:45 1998 Nick Clifton + + * rtlanal.c (multiple_sets): Change type of 'found' from 'rtx' to + 'int'. + Tue Dec 22 13:55:44 1998 Theodore Papadopoulo * halfpic.c (half_pic_encode): Delete redundant code. diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 2d03751f8a6..645946da492 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. */ -- 2.30.2