diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-31 22:59:23 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-31 22:59:23 +0000 |
commit | 9d0db5ea62430f1b60792f50413b0ec619fcc59a (patch) | |
tree | e025605bd62fa448bd4ed333a10484868f2372f0 /gcc/tree.c | |
parent | d37625c045dc2fc28521d6acac29d439411703e0 (diff) | |
download | gcc-9d0db5ea62430f1b60792f50413b0ec619fcc59a.tar.gz |
Add missing newlines at two function headers
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86850 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 6 |
1 files 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); } |