@@ -1554,6 +1554,11 @@ build_contract_condition_function (tree fndecl, bool pre)
1554
1554
/* The handlers are void fns. */
1555
1555
TREE_TYPE (fn) = build_function_type (void_type_node, arg_types);
1556
1556
1557
+ /* Disable warnings for all the parameters */
1558
+ for (tree p = DECL_ARGUMENTS (fn); p && p!=void_list_node;
1559
+ p = TREE_CHAIN (p))
1560
+ suppress_warning (p);
1561
+
1557
1562
if (DECL_IOBJ_MEMBER_FUNCTION_P (fndecl))
1558
1563
TREE_TYPE (fn) = build_method_type (class_type, TREE_TYPE (fn));
1559
1564
@@ -1591,7 +1596,7 @@ build_contract_condition_function (tree fndecl, bool pre)
1591
1596
/* Update various inline related declaration properties. */
1592
1597
// DECL_DECLARED_INLINE_P (fn) = true;
1593
1598
DECL_DISREGARD_INLINE_LIMITS (fn) = true ;
1594
- TREE_NO_WARNING (fn) = true ;
1599
+ suppress_warning (fn);
1595
1600
1596
1601
return fn;
1597
1602
}
@@ -1932,6 +1937,7 @@ build_contract_wrapper_function (tree fndecl, bool is_cvh,
1932
1937
TREE_CHAIN (last) = void_list_node;
1933
1938
break ;
1934
1939
}
1940
+ suppress_warning (p);
1935
1941
last = TREE_CHAIN (last) = copy_decl (p);
1936
1942
DECL_CONTEXT (last) = wrapdecl;
1937
1943
}
@@ -1962,7 +1968,7 @@ build_contract_wrapper_function (tree fndecl, bool is_cvh,
1962
1968
/* Update various inline related declaration properties. */
1963
1969
// DECL_DECLARED_INLINE_P (wrapdecl) = true;
1964
1970
DECL_DISREGARD_INLINE_LIMITS (wrapdecl) = true ;
1965
- TREE_NO_WARNING (wrapdecl) = true ;
1971
+ suppress_warning (wrapdecl);
1966
1972
1967
1973
return wrapdecl;
1968
1974
}
0 commit comments