diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-11-28 22:53:04 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-11-28 22:53:04 +0000 |
commit | 3a0c96a9966a85f4205558490e1281471c34980f (patch) | |
tree | 6b5b199df7937536be9ad316fe4283f851d64cc5 /gdb/config/mn10200 | |
parent | 02331869322178ead208b8328caab67c5a77b6b3 (diff) | |
download | gdb-3a0c96a9966a85f4205558490e1281471c34980f.zip gdb-3a0c96a9966a85f4205558490e1281471c34980f.tar.gz gdb-3a0c96a9966a85f4205558490e1281471c34980f.tar.bz2 |
CARP:
Rewrite INNER_THAN so that it takes parameters.
Diffstat (limited to 'gdb/config/mn10200')
-rw-r--r-- | gdb/config/mn10200/tm-mn10200.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/mn10200/tm-mn10200.h b/gdb/config/mn10200/tm-mn10200.h index e4c71fd..671b534 100644 --- a/gdb/config/mn10200/tm-mn10200.h +++ b/gdb/config/mn10200/tm-mn10200.h @@ -86,7 +86,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define DECR_PC_AFTER_BREAK 0 /* Stacks grow the normal way. */ -#define INNER_THAN < +#define INNER_THAN(lhs,rhs) ((lhs) < (rhs)) #define SAVED_PC_AFTER_CALL(frame) \ (read_memory_integer (read_register (SP_REGNUM), REGISTER_SIZE) & 0xffffff) |