mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 23:45:12 +08:00
* read-rtl.c (read_name): Consider \r whitespace.
From-SVN: r44556
This commit is contained in:
parent
41ae4ee667
commit
b38b083acf
@ -1,3 +1,7 @@
|
||||
2001-08-01 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* read-rtl.c (read_name): Consider \r whitespace.
|
||||
|
||||
2001-07-11 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* config.gcc: Recognize powerpc-*-netbsd*.
|
||||
|
@ -174,7 +174,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 == '[')
|
||||
|
Loading…
Reference in New Issue
Block a user