1998-11-09 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Nov 1998 20:33:38 +0000 (20:33 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Nov 1998 20:33:38 +0000 (20:33 +0000)
        * dbxout.c: Check HAVE_STAB_H instead of HAVE_STABS_H.
Mon Nov  9 20:15:19 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
        * regmove.c (regmove_optimize): Fix error in last change.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23587 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/dbxout.c
gcc/regmove.c

index b3072f5..23ba910 100644 (file)
@@ -1,3 +1,11 @@
+1998-11-09  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
+
+       * dbxout.c: Check HAVE_STAB_H instead of HAVE_STABS_H.
+
+Mon Nov  9 20:15:19 1998  Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
+
+       * regmove.c (regmove_optimize): Fix error in last change.
+
 Mon Nov  9 16:37:52 1998  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * mips.c (function_prologue): When TARGET_MIPS16, adjust the register
index 5e6f2a9..c0e71b5 100644 (file)
@@ -165,7 +165,7 @@ static int source_label_number = 1;
 
 /* If there is a system stabs.h, use it.  Otherwise, use our own.  */
 
-#ifndef HAVE_STABS_H
+#ifndef HAVE_STAB_H
 #include "gstab.h"
 #else
 #include <stab.h>
index 57227b9..5ff44cb 100644 (file)
@@ -1009,7 +1009,7 @@ regmove_optimize (f, nregs, regmove_dump_file)
            }
 
 #ifdef REGISTER_CONSTRAINTS
-         if (find_matches (insn, &match) < 0)
+         if (! find_matches (insn, &match))
            continue;
 
          /* Now scan through the operands looking for a source operand
@@ -1119,7 +1119,7 @@ regmove_optimize (f, nregs, regmove_dump_file)
          int op_no, match_no;
          int success = 0;
 
-         if (find_matches (insn, &match) < 0)
+         if (! find_matches (insn, &match))
            continue;
 
          /* Now scan through the operands looking for a destination operand