diff options
author | Richard Henderson <rth@cygnus.com> | 1999-10-14 23:56:28 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-14 23:56:28 -0700 |
commit | aece2740acb5a0eede12d657076712b3e2e526f7 (patch) | |
tree | b7a113db2ece162dd4d84c92362f8413eba01a45 /gcc/rtl.c | |
parent | 0e7e91552cd13ba4c9d98876836c0ebe3d28f2b7 (diff) | |
download | gcc-aece2740acb5a0eede12d657076712b3e2e526f7.zip gcc-aece2740acb5a0eede12d657076712b3e2e526f7.tar.gz gcc-aece2740acb5a0eede12d657076712b3e2e526f7.tar.bz2 |
genrecog.c (message_with_line): Prototype.
* 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.
From-SVN: r30010
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |