mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* MAINTAINERS: Change cris-elf state to non-broken.
* cp-name-parser.y (parse_escape): Initialize target_char to zero.
This commit is contained in:
parent
c318251408
commit
4a72630ae7
@ -1,3 +1,8 @@
|
||||
2005-05-28 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* MAINTAINERS: Change cris-elf state to non-broken.
|
||||
* cp-name-parser.y (parse_escape): Initialize target_char to zero.
|
||||
|
||||
2005-05-27 Orjan Friberg <orjanf@axis.com>
|
||||
|
||||
* cris-tdep.c (crisv32_scan_prologue): Add.
|
||||
|
@ -67,8 +67,7 @@ the native maintainer when resolving ABI issues.
|
||||
avr --target=avr ,-Werror
|
||||
Theodore A. Roth troth@openavr.org
|
||||
|
||||
cris --target=cris-elf broken
|
||||
(sim/cris/modelv10.c:4181 crisv10f_engine_run_full?)
|
||||
cris --target=cris-elf ,-Werror
|
||||
|
||||
d10v OBSOLETE
|
||||
|
||||
|
@ -1440,7 +1440,7 @@ c_parse_backslash (int host_char, int *target_char)
|
||||
static int
|
||||
parse_escape (const char **string_ptr)
|
||||
{
|
||||
int target_char;
|
||||
int target_char = 0;
|
||||
int c = *(*string_ptr)++;
|
||||
if (c_parse_backslash (c, &target_char))
|
||||
return target_char;
|
||||
|
Loading…
Reference in New Issue
Block a user