diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 2004-08-31 18:59:23 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2004-08-31 18:59:23 -0400 |
commit | d938569cebfece2811f4242f067c21779edb8b76 (patch) | |
tree | e025605bd62fa448bd4ed333a10484868f2372f0 /gcc/tree.c | |
parent | a4e9ffe59171f4ae43e329f0cc1dd919bac27226 (diff) | |
download | gcc-d938569cebfece2811f4242f067c21779edb8b76.zip gcc-d938569cebfece2811f4242f067c21779edb8b76.tar.gz gcc-d938569cebfece2811f4242f067c21779edb8b76.tar.bz2 |
Add missing newlines at two function headers
From-SVN: r86850
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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); } |