OSDN Git Service

Fix obvious typo that produced compile time warning.
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Dec 1998 15:17:13 +0000 (15:17 +0000)
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Dec 1998 15:17:13 +0000 (15:17 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24397 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/rtlanal.c

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