diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1996-07-03 22:07:53 +0000 |
commit | 0f41302f4736dbb0fbf4690d6430ce581c5a9d80 (patch) | |
tree | e82dd48a4282d7b9e8b1c71b065b52af17254c52 /gcc/genflags.c | |
parent | 9753f1136864a98cca12ab71f0ffe1af4dd84486 (diff) | |
download | gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.zip gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.gz gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.bz2 |
formatting tweaks
From-SVN: r12390
Diffstat (limited to 'gcc/genflags.c')
-rw-r--r-- | gcc/genflags.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/genflags.c b/gcc/genflags.c index e91b45d..f8b3983 100644 --- a/gcc/genflags.c +++ b/gcc/genflags.c @@ -50,6 +50,7 @@ static struct obstack call_obstack, normal_obstack; static int max_id_len; /* Count the number of match_operand's found. */ + static int num_operands (x) rtx x; @@ -87,6 +88,7 @@ num_operands (x) } /* Print out prototype information for a function. */ + static void gen_proto (insn) rtx insn; @@ -108,6 +110,7 @@ gen_proto (insn) } /* Print out a function declaration without a prototype. */ + static void gen_nonproto (insn) rtx insn; @@ -258,7 +261,7 @@ from the machine description file `md'. */\n\n"); } /* Print out the prototypes now. */ - dummy = (rtx)0; + dummy = (rtx) 0; obstack_grow (&call_obstack, &dummy, sizeof (rtx)); call_insns = (rtx *) obstack_finish (&call_obstack); |