[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
This commit is contained in:
parent
a3bc83cc30
commit
3363316f32
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user