2001-09-21 Michael Snyder <msnyder@redhat.com>

* c-exp.y (typebase): Accept (signed long long) as a type expr.
This commit is contained in:
Michael Snyder 2001-09-27 21:14:48 +00:00
parent fa9f0e33b3
commit 3e9986d221
2 changed files with 8 additions and 0 deletions

View file

@ -102,6 +102,10 @@
8-byte wide watchpoints.
(i386_show_dr): Debug message format string change.
2001-09-21 Michael Snyder <msnyder@redhat.com>
* c-exp.y (typebase): Accept (signed long long) as a type expr.
2001-09-20 Kevin Buettner <kevinb@redhat.com>
* solib-svr4.c (fetch_link_map_offsets): Add comment.

View file

@ -812,6 +812,10 @@ typebase /* Implements (approximately): (type-qualifier)* type-specifier */
{ $$ = builtin_type_unsigned_long_long; }
| UNSIGNED LONG LONG INT_KEYWORD
{ $$ = builtin_type_unsigned_long_long; }
| SIGNED_KEYWORD LONG LONG
{ $$ = lookup_signed_typename ("long long"); }
| SIGNED_KEYWORD LONG LONG INT_KEYWORD
{ $$ = lookup_signed_typename ("long long"); }
| SHORT INT_KEYWORD
{ $$ = builtin_type_short; }
| UNSIGNED SHORT INT_KEYWORD