tree: Change error_operand_p to an inline function

I've thought for a while that many of the macros in tree.h and such should
become inline functions.  This one in particular was confusing Coverity; the
null check in the macro made it think that all code guarded by
error_operand_p would also need null checks.

gcc/ChangeLog:

	* tree.h (error_operand_p): Change to inline function.
This commit is contained in:
Jason Merrill 2021-08-31 12:54:37 -04:00
parent 81f9718139
commit c03db573b9
1 changed files with 7 additions and 4 deletions

View File

@ -4365,11 +4365,14 @@ tree_strip_any_location_wrapper (tree exp)
#define long_long_integer_type_node integer_types[itk_long_long]
#define long_long_unsigned_type_node integer_types[itk_unsigned_long_long]
/* True if NODE is an erroneous expression. */
/* True if T is an erroneous expression. */
#define error_operand_p(NODE) \
((NODE) == error_mark_node \
|| ((NODE) && TREE_TYPE ((NODE)) == error_mark_node))
inline bool
error_operand_p (const_tree t)
{
return (t == error_mark_node
|| (t && TREE_TYPE (t) == error_mark_node));
}
/* Return the number of elements encoded directly in a VECTOR_CST. */