diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1994-03-30 09:57:08 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1994-03-30 09:57:08 +0000 |
commit | db2302cb933984f307b2175d7ffaa86ccd41c2a0 (patch) | |
tree | d5585b0351adeed20e2f4beb923f2e104021c4d3 /gdb/ch-exp.y | |
parent | 1f655b81a6deae5fc9aacaf0eae8acfc516b18f3 (diff) | |
download | gdb-db2302cb933984f307b2175d7ffaa86ccd41c2a0.zip gdb-db2302cb933984f307b2175d7ffaa86ccd41c2a0.tar.gz gdb-db2302cb933984f307b2175d7ffaa86ccd41c2a0.tar.bz2 |
* ch-exp.y (decode_integer_value, match_character_literal,
match_bitstring_literal): Guard tolower calls with isupper,
tolower on old BSD systems blindly subtracts a constant.
* dbxread.c (read_ofile_symtab): Check for __gnu_compiled_* as
well when determining the producer of the object file.
* mdebugread.c (has_opaque_xref): New function to check for
cross reference to an opaque aggregate.
* mdebugread.c (parse_symbol, parse_partial_symbols): Do not
enter typedefs to opaque aggregates into the symbol tables.
* mdebugread.c (parse_external): Remove skip_procedures argument,
it has always been 1. Remove code that handled stProc symbols,
it was never executed and was wrong, as the index of a
stProc symbol points to the local symbol table and not to the
auxiliary symbol info. Update caller.
* mdebugread.c (parse_partial_symbols): Do not enter external
stProc symbols into the partial symbol table, they are already
entered into the minimal symbol table.
* config/i386/tm-symmetry.h: Clean up, it is now only used for Dynix.
Remove all conditionals and definitions for ptx.
I386_REGNO_TO_SYMMETRY moved to here from symm-tdep.c.
Fix addresses of floating point registers in REGISTER_U_ADDR.
STORE_STRUCT_RETURN now handles cc and gcc conventions.
FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC,
IN_SIGTRAMP, SIGCONTEXT_PC_OFFSET defined to make backtracing through
signal trampoline code work.
* config/i386/xm-symmetry.h: Clean up, it is now only used for Dynix.
Remove all conditionals and definitions for ptx.
Remove KDB definitions.
* symm-nat.c (store_inferior_registers): Fetch registers before
storing them to obtain valid floating point control registers.
Store fpu registers.
* symm-nat.c (print_1167_control_word): Dynix 3.1.1 defines
FPA_PCR_CC_C0 and FPA_PCR_CC_C1, avoid duplicate case value.
* symm-nat.c (fetch_inferior_registers, child_xfer_memory):
Fix typos.
* symm-nat.c (child_resume): Update type of `signal' parameter.
* symm-tdep.c (I386_REGNO_TO_SYMMETRY): Moved to tm-symmetry.h.
Diffstat (limited to 'gdb/ch-exp.y')
-rw-r--r-- | gdb/ch-exp.y | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index cb6aa18..ded20b5 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -1079,7 +1079,9 @@ decode_integer_value (base, tokptrptr, ivalptr) while (*tokptr != '\0') { - temp = tolower (*tokptr); + temp = *tokptr; + if (isupper (temp)) + temp = tolower (temp); tokptr++; switch (temp) { @@ -1405,7 +1407,7 @@ match_character_literal () char *tokptr = lexptr; int ival = 0; - if ((tolower (*tokptr) == 'c') && (*(tokptr + 1) == '\'')) + if ((*tokptr == 'c' || *tokptr == 'C') && (*(tokptr + 1) == '\'')) { /* We have a GNU chill extension form, so skip the leading "C'", decode the hex value, and then ensure that we have a trailing @@ -1536,7 +1538,9 @@ match_bitstring_literal () while (*tokptr != '\0' && *tokptr != '\'') { - digit = tolower (*tokptr); + digit = *tokptr; + if (isupper (digit)) + digit = tolower (digit); tokptr++; switch (digit) { |