diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-09 01:42:28 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-09 01:42:28 +0000 |
commit | a6a2274a17660ba099a5f5b15536421939e46c1d (patch) | |
tree | a546d2736172ee466c2568e02cd89721a1acfd42 /gcc/read-rtl.c | |
parent | 461b48d5448f2594e13e085c9f69b15d328ed032 (diff) | |
download | gcc-a6a2274a17660ba099a5f5b15536421939e46c1d.zip gcc-a6a2274a17660ba099a5f5b15536421939e46c1d.tar.gz gcc-a6a2274a17660ba099a5f5b15536421939e46c1d.tar.bz2 |
read-rtl.c: Fix formatting.
* read-rtl.c: Fix formatting.
* real.c: Likewise.
* recog.c: Likewise.
* regclass.c: Likewise.
* regmove.c: Likewise.
* reg-stack.c: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* resource.c: Likewise.
* rtlanal.c: Likewise.
* rtl.c: Likewise.
* rtl-error.c: Likewise.
From-SVN: r53313
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 5b937ec..5db7b99 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 |