diff options
Diffstat (limited to 'gcc/c-aux-info.c')
-rw-r--r-- | gcc/c-aux-info.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-aux-info.c b/gcc/c-aux-info.c index 429601f21fa..2114a86e959 100644 --- a/gcc/c-aux-info.c +++ b/gcc/c-aux-info.c @@ -178,10 +178,10 @@ gen_formal_list_for_type (fntype, style) formal_list = concat (formal_list, ", "); this_type = gen_type ("", TREE_VALUE (formal_type), ansi); - formal_list = - (strlen (this_type)) - ? concat (formal_list, affix_data_type (this_type)) - : concat (formal_list, data_type); + formal_list + = ((strlen (this_type)) + ? concat (formal_list, affix_data_type (this_type)) + : concat (formal_list, data_type)); formal_type = TREE_CHAIN (formal_type); } |