diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-15 06:56:28 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-15 06:56:28 +0000 |
commit | 4747a74cc703a6d3c2b209857c779098c3784280 (patch) | |
tree | b7a113db2ece162dd4d84c92362f8413eba01a45 /gcc/rtl.c | |
parent | d45b8d1b557d2818270650e2d40326d3b152db81 (diff) | |
download | gcc-4747a74cc703a6d3c2b209857c779098c3784280.tar.gz |
* genrecog.c (message_with_line): Prototype.
(validate_pattern): Pass along the set for the dest, not a flag.
Fix non-lvalue message. Don't warn for VOIDmode SET_DEST of CALL.
Check for PC/CC0 as sources.
(nodes_identical): Check for children position match before
allowing the combination.
* rtl.c (read_rtx): Track line number across \\\n.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30010 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index 55687c81963..282b4a7901f 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -954,6 +954,8 @@ read_rtx (infile) obstack_grow (rtl_obstack, "\\n\\t", 4); continue; } + if (c == '\n') + read_rtx_lineno++; } else if (c == '"') break; |