PR gas/14263
* config/tc-arm.c (parse_operands): Initialise val.
This commit is contained in:
parent
3d4d4302b9
commit
99aad25459
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-06-29 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR gas/14263
|
||||
* config/tc-arm.c (parse_operands): Initialise val.
|
||||
|
||||
2012-06-28 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR gas/14260
|
||||
|
|
|
@ -6202,7 +6202,7 @@ parse_operands (char *str, const unsigned int *pattern, bfd_boolean thumb)
|
|||
unsigned const int *upat = pattern;
|
||||
char *backtrack_pos = 0;
|
||||
const char *backtrack_error = 0;
|
||||
int i, val, backtrack_index = 0;
|
||||
int i, val = 0, backtrack_index = 0;
|
||||
enum arm_reg_type rtype;
|
||||
parse_operand_result result;
|
||||
unsigned int op_parse_code;
|
||||
|
|
Loading…
Reference in a new issue