summaryrefslogtreecommitdiff
path: root/gcc/c-family
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-09 10:00:28 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-09 10:00:28 +0000
commit3a54beafaa08337dab2968b43ffc392b37cc9a71 (patch)
tree9ee23a0ca0759957e9ebeca361012cde0e70ca16 /gcc/c-family
parentfce49e7cff4326ac139147df68dbbe10df6736d8 (diff)
downloadgcc-3a54beafaa08337dab2968b43ffc392b37cc9a71.tar.gz
Fix some formatting. Put stuff on a single line where shorter wide-int code
makes that possible. Undo some spurious differences with trunk. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-family')
-rw-r--r--gcc/c-family/cilk.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-family/cilk.c b/gcc/c-family/cilk.c
index 1fde1c549c2..ea97fbdc59f 100644
--- a/gcc/c-family/cilk.c
+++ b/gcc/c-family/cilk.c
@@ -662,8 +662,7 @@ declare_one_free_variable (const void *var0, void **map0,
/* Maybe promote to int. */
if (INTEGRAL_TYPE_P (var_type) && COMPLETE_TYPE_P (var_type)
- && INT_CST_LT (TYPE_SIZE (var_type),
- TYPE_SIZE (integer_type_node)))
+ && INT_CST_LT (TYPE_SIZE (var_type), TYPE_SIZE (integer_type_node)))
arg_type = integer_type_node;
else
arg_type = var_type;