aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 3f1abf9..465f660 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -433,8 +433,7 @@ copy_list (tree list)
tree
build_int_cst (tree type, HOST_WIDE_INT low)
{
- return build_int_cst_wide (type, low,
- low < 0 ? -1 : 0);
+ return build_int_cst_wide (type, low, low < 0 ? -1 : 0);
}
/* Create an INT_CST node with a LOW value zero extended. */