aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-iterate.c
diff options
context:
space:
mode:
authorMike Stump <mrs@gcc.gnu.org>1996-07-03 22:07:53 +0000
committerMike Stump <mrs@gcc.gnu.org>1996-07-03 22:07:53 +0000
commit0f41302f4736dbb0fbf4690d6430ce581c5a9d80 (patch)
treee82dd48a4282d7b9e8b1c71b065b52af17254c52 /gcc/c-iterate.c
parent9753f1136864a98cca12ab71f0ffe1af4dd84486 (diff)
downloadgcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.zip
gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.gz
gcc-0f41302f4736dbb0fbf4690d6430ce581c5a9d80.tar.bz2
formatting tweaks
From-SVN: r12390
Diffstat (limited to 'gcc/c-iterate.c')
-rw-r--r--gcc/c-iterate.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/c-iterate.c b/gcc/c-iterate.c
index d365caf..f8dec10 100644
--- a/gcc/c-iterate.c
+++ b/gcc/c-iterate.c
@@ -412,7 +412,7 @@ void
push_iterator_stack ()
{
struct iter_stack_node *new_top
- = (struct iter_stack_node*)
+ = (struct iter_stack_node *)
obstack_alloc (&ixp_obstack, sizeof (struct iter_stack_node));
new_top->first = 0;
@@ -445,15 +445,15 @@ add_ixpansion (idecl, pro_start, pro_end, epi_start, epi_end)
tree idecl;
rtx pro_start, pro_end, epi_start, epi_end;
{
- struct ixpansion* newix;
+ struct ixpansion *newix;
/* Do nothing if we are not inside "({...})",
as in that case this expansion can't need subsequent RTL modification. */
if (iter_stack == 0)
return;
- newix = (struct ixpansion*) obstack_alloc (&ixp_obstack,
- sizeof (struct ixpansion));
+ newix = (struct ixpansion *) obstack_alloc (&ixp_obstack,
+ sizeof (struct ixpansion));
newix->ixdecl = idecl;
newix->ixprologue_start = pro_start;
newix->ixprologue_end = pro_end;
@@ -474,7 +474,7 @@ static void
delete_ixpansion (idecl)
tree idecl;
{
- struct ixpansion* previx = 0, *ix;
+ struct ixpansion *previx = 0, *ix;
for (ix = sublevel_ixpansions.first; ix; ix = ix->next)
if (ix->ixdecl == idecl)
@@ -580,7 +580,7 @@ pixl (head)
return head;
}
-/* Print Iterator Stack*/
+/* Print Iterator Stack. */
void
pis ()