From b210978fd36a1d734fbfd94a3118903d1140fdc6 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Wed, 1 Aug 2001 13:50:27 -0700 Subject: * rtl.c (read_name): Consider \r whitespace. From-SVN: r44557 --- gcc/rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/rtl.c') diff --git a/gcc/rtl.c b/gcc/rtl.c index 3a5a487..9011cda 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -821,7 +821,7 @@ read_name (str, infile) p = str; while (1) { - if (c == ' ' || c == '\n' || c == '\t' || c == '\f') + if (c == ' ' || c == '\n' || c == '\t' || c == '\f' || c == '\r') break; if (c == ':' || c == ')' || c == ']' || c == '"' || c == '/' || c == '(' || c == '[') -- cgit v1.1