diff options
author | Pierre Muller <muller@ics.u-strasbg.fr> | 2001-11-09 09:46:40 +0000 |
---|---|---|
committer | Pierre Muller <muller@ics.u-strasbg.fr> | 2001-11-09 09:46:40 +0000 |
commit | 458d424149528912ee72f6b9b9a2afd578a17715 (patch) | |
tree | 2d66f88d1b0030fd41ab97b54292b4be4d32d0bf /gdb/p-exp.y | |
parent | 47ceee35cc09d19717c56c956fb2f28bf94bbf65 (diff) | |
download | gdb-458d424149528912ee72f6b9b9a2afd578a17715.tar.gz |
2001-11-06 Pierre Muller <muller@ics.u-strasbg.fr>
* p-exp.y (yylex): Only change case of expression if symbol is found.
Also check for GPC standard name form.
Diffstat (limited to 'gdb/p-exp.y')
-rw-r--r-- | gdb/p-exp.y | 54 |
1 files changed, 44 insertions, 10 deletions
diff --git a/gdb/p-exp.y b/gdb/p-exp.y index d786af9f6e0..d1fcb1b000f 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -1299,21 +1299,55 @@ yylex () VAR_NAMESPACE, &is_a_field_of_this, (struct symtab **) NULL); - /* second chance uppercased ! */ + /* second chance uppercased (as Free Pascal does). */ if (!sym) { - for (i = 0;i <= namelen;i++) + for (i = 0; i <= namelen; i++) { - if ((tmp[i]>='a' && tmp[i]<='z')) + if ((tmp[i] >= 'a' && tmp[i] <= 'z')) tmp[i] -= ('a'-'A'); - /* I am not sure that copy_name gives excatly the same result ! */ - if ((tokstart[i]>='a' && tokstart[i]<='z')) - tokstart[i] -= ('a'-'A'); } - sym = lookup_symbol (tmp, expression_context_block, - VAR_NAMESPACE, - &is_a_field_of_this, - (struct symtab **) NULL); + sym = lookup_symbol (tmp, expression_context_block, + VAR_NAMESPACE, + &is_a_field_of_this, + (struct symtab **) NULL); + if (sym) + for (i = 0; i <= namelen; i++) + { + if ((tokstart[i] >= 'a' && tokstart[i] <= 'z')) + tokstart[i] -= ('a'-'A'); + } + } + /* Third chance Capitalized (as GPC does). */ + if (!sym) + { + for (i = 0; i <= namelen; i++) + { + if (i == 0) + { + if ((tmp[i] >= 'a' && tmp[i] <= 'z')) + tmp[i] -= ('a'-'A'); + } + else + if ((tmp[i] >= 'A' && tmp[i] <= 'Z')) + tmp[i] -= ('A'-'a'); + } + sym = lookup_symbol (tmp, expression_context_block, + VAR_NAMESPACE, + &is_a_field_of_this, + (struct symtab **) NULL); + if (sym) + for (i = 0; i <= namelen; i++) + { + if (i == 0) + { + if ((tokstart[i] >= 'a' && tokstart[i] <= 'z')) + tokstart[i] -= ('a'-'A'); + } + else + if ((tokstart[i] >= 'A' && tokstart[i] <= 'Z')) + tokstart[i] -= ('A'-'a'); + } } /* Call lookup_symtab, not lookup_partial_symtab, in case there are no psymtabs (coff, xcoff, or some future change to blow away the |