summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2014-04-30 15:44:41 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2014-04-30 15:44:41 +0000
commitbedbed50ff969478b0c8878678d7c169a8a0cdaf (patch)
tree8b9c55069972e6226e389fc658f13706c434b110 /gcc
parent77c6039b7cda03dff69fc1de4e1e048ccf179a1d (diff)
downloadgcc-bedbed50ff969478b0c8878678d7c169a8a0cdaf.tar.gz
80-cols fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@209938 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 4ad3943a72c..a578c926923 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -1959,7 +1959,8 @@ tree
make_int_cst_stat (int len, int ext_len MEM_STAT_DECL)
{
tree t;
- int length = (ext_len - 1) * sizeof (HOST_WIDE_INT) + sizeof (struct tree_int_cst);
+ int length = ((ext_len - 1) * sizeof (HOST_WIDE_INT)
+ + sizeof (struct tree_int_cst));
gcc_assert (len);
record_node_allocation_statistics (INTEGER_CST, length);