diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index 564cd0e9a22..9122df5437f 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -422,12 +422,10 @@ copy_list (tree list) /* Return a newly constructed INTEGER_CST node whose constant value is specified by the two ints LOW and HI. - The TREE_TYPE is set to `int'. - - This function should be used via the `build_int_2' macro. */ + The TREE_TYPE is set to `int'. */ tree -build_int_2_wide (unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi) +build_int_2 (unsigned HOST_WIDE_INT low, HOST_WIDE_INT hi) { tree t = make_node (INTEGER_CST); |