diff options
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r-- | gcc/read-rtl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c index 5b937ec9f3b..5db7b99a409 100644 --- a/gcc/read-rtl.c +++ b/gcc/read-rtl.c @@ -265,7 +265,7 @@ read_escape (ob, infile) obstack_1grow (ob, c); } - + /* Read a double-quoted string onto the obstack. Caller has scanned the leading quote. */ @@ -325,7 +325,7 @@ read_braced_string (ob, infile) obstack_1grow (ob, c); } - + obstack_1grow (ob, 0); return obstack_finish (ob); } @@ -361,7 +361,7 @@ read_string (ob, infile, star_if_braced) } else fatal_with_file_and_line (infile, "expected `\"' or `{', found `%c'", c); - + if (saw_paren) { c = read_skip_spaces (infile); @@ -639,7 +639,7 @@ again: { XVEC (return_rtx, i) = 0; break; - } + } /* Now process the vector. */ case 'E': @@ -694,7 +694,7 @@ again: gets a star inserted as its first character, if it is written with a brace block instead of a string constant. */ int star_if_braced = (format_ptr[-1] == 'T'); - + stringbuf = read_string (&rtl_obstack, infile, star_if_braced); /* For insn patterns, we want to provide a default name |