diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-09 20:33:38 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-11-09 20:33:38 +0000 |
commit | ef5c3a57389e1bfcedb06a8943d4c0945320b974 (patch) | |
tree | 450b048ab3e5575b7d512ce86037dc120e44bfb6 | |
parent | 7b2d9c858cf9d0b2c3848423965e59102a06fd81 (diff) | |
download | ppe42-gcc-ef5c3a57389e1bfcedb06a8943d4c0945320b974.tar.gz ppe42-gcc-ef5c3a57389e1bfcedb06a8943d4c0945320b974.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23587 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/dbxout.c | 2 | ||||
-rw-r--r-- | gcc/regmove.c | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3072f5994f..23ba910f637 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 5e6f2a9d874..c0e71b52469 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -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> diff --git a/gcc/regmove.c b/gcc/regmove.c index 57227b9a5ce..5ff44cb3dc3 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -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 |