summaryrefslogtreecommitdiff
path: root/gcc/read-rtl.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-06-23 13:57:39 +0000
committerNick Clifton <nickc@gcc.gnu.org>2003-06-23 13:57:39 +0000
commita3c18e4f6510be9263028126b63c6f31727c47da (patch)
tree2cbb21eea43e284bfaba02174801a19d400ab2ad /gcc/read-rtl.c
parent4319ef2a9d871c47640067f4f477d87be4faa0e1 (diff)
downloadgcc-a3c18e4f6510be9263028126b63c6f31727c47da.tar.gz
(read_braced_string): Check for EOF. If encountered issue an error message.
From-SVN: r68363
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r--gcc/read-rtl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c
index fd17bd04072..9d08da4c94c 100644
--- a/gcc/read-rtl.c
+++ b/gcc/read-rtl.c
@@ -298,11 +298,13 @@ read_braced_string (ob, infile)
{
int c;
int brace_depth = 1; /* caller-processed */
+ unsigned long starting_read_rtx_lineno = read_rtx_lineno;
obstack_1grow (ob, '{');
while (brace_depth)
{
c = getc (infile); /* Read the string */
+
if (c == '\n')
read_rtx_lineno++;
else if (c == '{')
@@ -314,6 +316,10 @@ read_braced_string (ob, infile)
read_escape (ob, infile);
continue;
}
+ else if (c == EOF)
+ fatal_with_file_and_line
+ (infile, "missing closing } for opening brace on line %lu",
+ starting_read_rtx_lineno);
obstack_1grow (ob, c);
}