From aa4661f82360b21f5048823019740e80ed4efbe3 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 18 Apr 2000 19:35:09 +0000 Subject: ggc-common.c: Add missing blanks. * ggc-common.c: Add missing blanks. * print-tree.c (print_node): Print DECL_OFFSET_ALIGN. * tree.h (DECL_OFFSET_ALIGN): Fix typo in comment. From-SVN: r33232 --- gcc/ggc-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/ggc-common.c') diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index 88488fec445..9fafd22204e 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -91,7 +91,7 @@ ggc_add_rtx_root (base, nelt) rtx *base; int nelt; { - ggc_add_root (base, nelt, sizeof(rtx), ggc_mark_rtx_ptr); + ggc_add_root (base, nelt, sizeof (rtx), ggc_mark_rtx_ptr); } /* Register an array of trees as a GC root. */ @@ -101,7 +101,7 @@ ggc_add_tree_root (base, nelt) tree *base; int nelt; { - ggc_add_root (base, nelt, sizeof(tree), ggc_mark_tree_ptr); + ggc_add_root (base, nelt, sizeof (tree), ggc_mark_tree_ptr); } /* Register a varray of rtxs as a GC root. */ -- cgit v1.2.1