diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-02-20 22:41:52 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-02-20 22:41:52 +0000 |
commit | 551792a5ade93126dfbcb56d7263a21f5bbb7fc7 (patch) | |
tree | c36b18a9c1fb78e3ab4c6d4bbdf8de653a152dde /gdb/jv-exp.y | |
parent | 0f5881fadab5ef01a25e56ba1aa9164d3774fe57 (diff) | |
download | gdb-551792a5ade93126dfbcb56d7263a21f5bbb7fc7.zip gdb-551792a5ade93126dfbcb56d7263a21f5bbb7fc7.tar.gz gdb-551792a5ade93126dfbcb56d7263a21f5bbb7fc7.tar.bz2 |
2002-02-20 Daniel Jacobowitz <drow@mvista.com>
Fix PR gdb/265.
* jv-exp.y (parse_number): Handle 64-bit integers.
Diffstat (limited to 'gdb/jv-exp.y')
-rw-r--r-- | gdb/jv-exp.y | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gdb/jv-exp.y b/gdb/jv-exp.y index 2a9b17e..403794e 100644 --- a/gdb/jv-exp.y +++ b/gdb/jv-exp.y @@ -764,13 +764,13 @@ parse_number (p, len, parsed_float, putithere) } c = p[len-1]; + /* A paranoid calculation of (1<<64)-1. */ limit = (ULONGEST)0xffffffff; + limit = ((limit << 16) << 16) | limit; if (c == 'l' || c == 'L') { type = java_long_type; len--; - /* A paranoid calculation of (1<<64)-1. */ - limit = ((limit << 16) << 16) | limit; } else { @@ -797,9 +797,13 @@ parse_number (p, len, parsed_float, putithere) n += c; } - putithere->typed_val_int.val = n; - putithere->typed_val_int.type = type; - return INTEGER_LITERAL; + if (type == java_int_type && n > (ULONGEST)0xffffffff) + type = java_long_type; + + putithere->typed_val_int.val = n; + putithere->typed_val_int.type = type; + + return INTEGER_LITERAL; } struct token |