diff options
author | Alan Modra <amodra@gmail.com> | 2007-04-21 06:54:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-04-21 06:54:57 +0000 |
commit | db55703487ec04ac06156ab76ea068055e494dde (patch) | |
tree | 6fde7e7c055a968a4805d584e9bf0a897237c1a5 /gas/expr.c | |
parent | c43a438d5eb0a2e19397a4c0fb51ce3a68ed1503 (diff) | |
download | gdb-db55703487ec04ac06156ab76ea068055e494dde.zip gdb-db55703487ec04ac06156ab76ea068055e494dde.tar.gz gdb-db55703487ec04ac06156ab76ea068055e494dde.tar.bz2 |
gas/
* expr.c (expr): Assert on rankarg, not rank which can be unsigned.
* read.c (read_a_source_file): Remove buffer_limit[-1] assertion.
Don't skip over NUL char.
(pseudo_set): Set X_op for registers to O_register.
* symbols.c (symbol_clone): Remove assertion that sym is defined.
(resolve_symbol_value): Resolve O_register symbols.
* config/tc-i386.c (parse_real_register): Don't use i386_float_regtab.
Instead find st(0) by hash lookup.
* config/tc-ppc.c (ppc_macro): Warning fix.
opcodes/
* i386-opc.c (i386_float_regtab, i386_float_regtab_size): Delete.
Move contents to..
(i386_regtab): ..here.
* i386-opc.h (i386_float_regtab, i386_float_regtab_size): Delete.
Diffstat (limited to 'gas/expr.c')
-rw-r--r-- | gas/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* expr.c -operands, expressions- Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -1636,7 +1636,7 @@ expr (int rankarg, /* Larger # is higher rank. */ operatorT op_right; int op_chars; - know (rank >= 0); + know (rankarg >= 0); /* Save the value of dot for the fixup code. */ if (rank == 0) |