On 11/12/2012 08:11 PM, Sriraman Tallam wrote:
+ && !targetm.target_option.function_versions (fn,
+ TREE_PURPOSE (match)))
The second argument should be lined up with the left paren if it's on a
different line. Perhaps formatting this as
&& !(targetm.target_option.function_versions
(fn, TREE_PURPOSE (match))))
would be better.
+ error_at (input_location, "Use of multiversioned function "
+ "Multiversioning needs ifunc which is not supported "
We don't capitalize the first letter of a diagnostic.
OK with those changes.
Jason