mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-05 10:57:57 +00:00
* expr.c (integer_constant): Fix computation of too_many_digits. Variable
digit_2 renamed to start. Fix check for whether number will fit in 32 bits. * read.c (emit_expr): Use valueT instead of long.
This commit is contained in:
parent
f34e27a18a
commit
44ce2f3221
@ -1,3 +1,10 @@
|
||||
Tue Jan 11 17:01:06 1994 Doug Evans (dje@canuck.cygnus.com)
|
||||
|
||||
* expr.c (integer_constant): Fix computation of too_many_digits.
|
||||
Variable digit_2 renamed to start. Fix check for whether number
|
||||
will fit in 32 bits.
|
||||
* read.c (emit_expr): Use valueT instead of long.
|
||||
|
||||
Tue Jan 11 13:01:20 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||
|
||||
* config/obj-elf.c: If TC_MIPS, include elf/mips.h.
|
||||
|
14
gas/read.c
14
gas/read.c
@ -78,7 +78,7 @@ const char lex_type[256] =
|
||||
0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, /* _!"#$%&'()*+,-./ */
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 0123456789:;<=>? */
|
||||
LEX_AT, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* @ABCDEFGHIJKLMNO */
|
||||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 3, /* PQRSTUVWXYZ[\]^_ */
|
||||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, 3, /* PQRSTUVWXYZ[\]^_ */
|
||||
0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, /* `abcdefghijklmno */
|
||||
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 0, 0, 0, 0, /* pqrstuvwxyz{|}~. */
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
@ -1702,14 +1702,14 @@ emit_expr (exp, nbytes)
|
||||
|
||||
if (op == O_constant)
|
||||
{
|
||||
register long get;
|
||||
register long use;
|
||||
register long mask;
|
||||
register long unmask;
|
||||
register valueT get;
|
||||
register valueT use;
|
||||
register valueT mask;
|
||||
register valueT unmask;
|
||||
|
||||
/* JF << of >= number of bits in the object is undefined. In
|
||||
particular SPARC (Sun 4) has problems */
|
||||
if (nbytes >= sizeof (long))
|
||||
if (nbytes >= sizeof (valueT))
|
||||
mask = 0;
|
||||
else
|
||||
mask = ~0 << (BITS_PER_CHAR * nbytes); /* Don't store these bits. */
|
||||
@ -1728,7 +1728,7 @@ emit_expr (exp, nbytes)
|
||||
as_warn ("Value 0x%lx truncated to 0x%lx.", get, use);
|
||||
}
|
||||
/* put bytes in right order. */
|
||||
md_number_to_chars (p, (valueT) use, (int) nbytes);
|
||||
md_number_to_chars (p, use, (int) nbytes);
|
||||
}
|
||||
else if (op == O_big)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user