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/m68k | |
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/m68k')
-rw-r--r-- | gdb/config/m68k/tm-m68k.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/config/m68k/tm-m68k.h b/gdb/config/m68k/tm-m68k.h index 74d4eea..a04e9e4 100644 --- a/gdb/config/m68k/tm-m68k.h +++ b/gdb/config/m68k/tm-m68k.h @@ -55,7 +55,7 @@ extern void m68k_find_saved_regs PARAMS ((struct frame_info *, struct frame_save /* Stack grows downward. */ -#define INNER_THAN < +#define INNER_THAN(lhs,rhs) ((lhs) < (rhs)) /* Stack must be kept short aligned when doing function calls. */ |