gcc.dg/tree-ssa/ssa-dom-cse-2.c: xfail scan for mmix.
[gcc.git] / gcc / ipa-inline-analysis.c
index 3c71aab4ecb92293ef3a3dc8453dac0b3c139c4d..148efbc09ef033f9565e06c3aed1b1a12df2ab50 100644 (file)
@@ -457,7 +457,7 @@ offline_size (struct cgraph_node *node, ipa_size_summary *info)
               && node->can_remove_if_no_direct_calls_p ())
        {
          int prob = opt_for_fn (node->decl, param_comdat_sharing_probability);
-         return info->size * (100 - prob + 50) / 100;
+         return (info->size * (100 - prob) + 50) / 100;
        }
     }
   return 0;