* MAINTAINERS: Change cris-elf state to non-broken.

* cp-name-parser.y (parse_escape): Initialize target_char to zero.
This commit is contained in:
Hans-Peter Nilsson 2005-05-28 08:49:13 +00:00
parent c318251408
commit 4a72630ae7
3 changed files with 7 additions and 3 deletions

View File

@ -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.

View File

@ -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

View File

@ -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;