Add missing newlines at two function headers
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 31 Aug 2004 22:59:23 +0000 (18:59 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 31 Aug 2004 22:59:23 +0000 (18:59 -0400)
From-SVN: r86850

gcc/tree.c

index 90e77ab..de6b8ec 100644 (file)
@@ -430,7 +430,8 @@ copy_list (tree list)
 \f
 /* 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);
 }