+2018-02-08 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * constexpr.c (cxx_eval_component_reference): Use INDIRECT_REF_P.
+ * lambda.c (build_capture_proxy): Likewise.
+ * search.c (field_access_p): Likewise.
+ * semantics.c (omp_clause_decl, omp_privatize_field,
+ finish_omp_clauses): Likewise.
+
2018-02-08 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/83806
tree whole = cxx_eval_constant_expression (ctx, orig_whole,
lval,
non_constant_p, overflow_p);
- if (TREE_CODE (whole) == INDIRECT_REF
+ if (INDIRECT_REF_P (whole)
&& integer_zerop (TREE_OPERAND (whole, 0))
&& !ctx->quiet)
error ("dereferencing a null pointer in %qE", orig_whole);
{
if (PACK_EXPANSION_P (init))
init = PACK_EXPANSION_PATTERN (init);
- if (TREE_CODE (init) == INDIRECT_REF)
+ if (INDIRECT_REF_P (init))
init = TREE_OPERAND (init, 0);
STRIP_NOPS (init);
}
return false;
tree indirect_ref = TREE_OPERAND (component_ref, 0);
- if (TREE_CODE (indirect_ref) != INDIRECT_REF)
+ if (!INDIRECT_REF_P (indirect_ref))
return false;
tree ptr = STRIP_NOPS (TREE_OPERAND (indirect_ref, 0));
&& DECL_OMP_PRIVATIZED_MEMBER (decl))
{
tree f = DECL_VALUE_EXPR (decl);
- if (TREE_CODE (f) == INDIRECT_REF)
+ if (INDIRECT_REF_P (f))
f = TREE_OPERAND (f, 0);
if (TREE_CODE (f) == COMPONENT_REF)
{
omp_private_member_map = new hash_map<tree, tree>;
if (TREE_CODE (TREE_TYPE (t)) == REFERENCE_TYPE)
{
- gcc_assert (TREE_CODE (m) == INDIRECT_REF);
+ gcc_assert (INDIRECT_REF_P (m));
m = TREE_OPERAND (m, 0);
}
tree vb = NULL_TREE;
if (TREE_CODE (t) == POINTER_PLUS_EXPR)
t = TREE_OPERAND (t, 0);
if (TREE_CODE (t) == ADDR_EXPR
- || TREE_CODE (t) == INDIRECT_REF)
+ || INDIRECT_REF_P (t))
t = TREE_OPERAND (t, 0);
}
tree n = omp_clause_decl_field (t);