From 81dd58a68e7a46261869073fa7c655fa3a3d0afc Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 9 May 1992 15:47:31 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r946 --- gcc/rtl.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 2.30.2