Fix obvious typo that produced compile time warning.
authorNick Clifton <nickc@cygnus.com>
Tue, 22 Dec 1998 15:17:13 +0000 (15:17 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Tue, 22 Dec 1998 15:17:13 +0000 (15:17 +0000)
From-SVN: r24397

gcc/ChangeLog
gcc/rtlanal.c

index 08fef685279966cda3e52e215867575b59d23028..d483c86e02b336eb9e893513038c93a1133e83a5 100644 (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.
index 2d03751f8a65b630d656ff9a6b06a4d3da81fdae..645946da49242c51dcb85ea59328860e1a69e007 100644 (file)
@@ -698,7 +698,7 @@ int
 multiple_sets (insn)
      rtx insn;
 {
-  rtx found;
+  int found;
   int i;
   
   /* INSN must be an insn.  */