From d938569cebfece2811f4242f067c21779edb8b76 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 31 Aug 2004 18:59:23 -0400 Subject: [PATCH] Add missing newlines at two function headers From-SVN: r86850 --- gcc/tree.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/tree.c b/gcc/tree.c index 90e77ab2735..de6b8ec60f4 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -430,7 +430,8 @@ copy_list (tree list) /* Create an INT_CST node with a LOW value sign extended. */ -tree build_int_cst (tree type, HOST_WIDE_INT low) +tree +build_int_cst (tree type, HOST_WIDE_INT low) { return build_int_cst_wide (type, low, low < 0 ? -1 : 0); @@ -438,7 +439,8 @@ tree build_int_cst (tree type, HOST_WIDE_INT low) /* Create an INT_CST node with a LOW value zero extended. */ -tree build_int_cstu (tree type, unsigned HOST_WIDE_INT low) +tree +build_int_cstu (tree type, unsigned HOST_WIDE_INT low) { return build_int_cst_wide (type, low, 0); } -- 2.30.2