From: Richard Stallman Date: Sat, 9 May 1992 15:47:31 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=81dd58a68e7a46261869073fa7c655fa3a3d0afc;p=gcc.git *** empty log message *** From-SVN: r946 --- diff --git a/gcc/rtl.c b/gcc/rtl.c index 7d7d73abf16..3c8594bae68 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -652,9 +652,10 @@ read_rtx (infile) /* \; makes stuff for a C string constant containing newline and tab. */ if (c == ';') - obstack_grow (rtl_obstack, "\\n\\t", 4); - else - obstack_1grow (rtl_obstack, c); + { + obstack_grow (rtl_obstack, "\\n\\t", 4); + continue; + } } else if (c == '"') break;