diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 01:42:28 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-09 01:42:28 +0000 |
commit | 2617fe26157b2f7e9a97160ba286323835b2b643 (patch) | |
tree | a546d2736172ee466c2568e02cd89721a1acfd42 /gcc/read-rtl.c | |
parent | 03e904a5b7cb1b9f4c0daba14e1e65cfc6c7a16a (diff) | |
download | gcc-2617fe26157b2f7e9a97160ba286323835b2b643.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53313 138bc75d-0d04-0410-961f-82ee72b054a4
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 |