aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-08-01 13:50:27 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-08-01 13:50:27 -0700
commitb210978fd36a1d734fbfd94a3118903d1140fdc6 (patch)
treec468f74b7d8795782b3ef0dce6f0b55c8e7dfb7d /gcc/rtl.c
parent62d220ba613c901541c3b4db7f5f2660e7a3d3a3 (diff)
downloadgcc-b210978fd36a1d734fbfd94a3118903d1140fdc6.zip
gcc-b210978fd36a1d734fbfd94a3118903d1140fdc6.tar.gz
gcc-b210978fd36a1d734fbfd94a3118903d1140fdc6.tar.bz2
* rtl.c (read_name): Consider \r whitespace.
From-SVN: r44557
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
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 == '[')