Commit 3363316f by Jeff Law

[multiple changes]

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.

From-SVN: r23587
parent a3bc83cc
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
......
......@@ -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>
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment