diff options
author | Bob Wilson <bob.wilson@acm.org> | 2005-06-07 18:31:34 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@acm.org> | 2005-06-07 18:31:34 +0000 |
commit | 0bf60745767d2465c81ee57ae7705a62d6d8fafe (patch) | |
tree | 8257f05b6cf7a003f9a861fa27f46ffdea76b339 /gas/config/tc-xtensa.h | |
parent | 05ab1f3b1c6eb9377b0ea51ded17c95e59fb25dc (diff) | |
download | gdb-0bf60745767d2465c81ee57ae7705a62d6d8fafe.zip gdb-0bf60745767d2465c81ee57ae7705a62d6d8fafe.tar.gz gdb-0bf60745767d2465c81ee57ae7705a62d6d8fafe.tar.bz2 |
* config/tc-xtensa.h (resource_table): Change units to unsigned chars.
* config/tc-xtensa.c (new_resource_table): Likewise.
(resize_resource_table): Likewise.
(release_resources): Fix assertion for unsigned values.
Diffstat (limited to 'gas/config/tc-xtensa.h')
-rw-r--r-- | gas/config/tc-xtensa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-xtensa.h b/gas/config/tc-xtensa.h index 99ff19a..56c38f9 100644 --- a/gas/config/tc-xtensa.h +++ b/gas/config/tc-xtensa.h @@ -418,7 +418,7 @@ typedef struct opcode_num_units_func opcode_num_units; opcode_funcUnit_use_unit_func opcode_unit_use; opcode_funcUnit_use_stage_func opcode_unit_stage; - char **units; + unsigned char **units; } resource_table; resource_table *new_resource_table |