Fix obvious typo that produced compile time warning.

From-SVN: r24397
This commit is contained in:
Nick Clifton 1998-12-22 15:17:13 +00:00 committed by Nick Clifton
parent 34fadae065
commit cae8acdde0
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -698,7 +698,7 @@ int
multiple_sets (insn)
rtx insn;
{
rtx found;
int found;
int i;
/* INSN must be an insn. */