On 11/22/2013 04:28 AM, Jakub Jelinek wrote:
+ if ((flag_sanitize & SANITIZE_RETURN) + && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (fndecl))) + && !DECL_CONSTRUCTOR_P (fndecl) + && !DECL_DESTRUCTOR_P (fndecl) + && targetm.warn_func_return (fndecl)) + {
...
+ }
Please split this out into a separate function. OK with this change and the missing space fix. Jason