Home
last modified time | relevance | path

Searched refs:clk_class (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dtree.cc115 if (op1_lvalue_kind == clk_class) in lvalue_kind()
133 else if (op1_lvalue_kind == clk_class) in lvalue_kind()
153 if (op1_lvalue_kind == clk_class) in lvalue_kind()
276 return clk_class; in lvalue_kind()
279 return (CLASS_TYPE_P (TREE_TYPE (ref)) ? clk_class : clk_none); in lvalue_kind()
284 return clk_class; in lvalue_kind()
316 return clk_class; in lvalue_kind()
333 if ((op1_lvalue_kind & (clk_rvalueref|clk_class)) in lvalue_kind()
345 if (kind & (clk_rvalueref|clk_class)) in real_lvalue_p()
365 if (kind & clk_class) in glvalue_p()
[all …]
Dcall.cc1776 gl_kind = clk_class; in reference_binding()
1782 && (gl_kind & clk_class)) in reference_binding()
1786 is_lvalue = gl_kind && !(gl_kind & (clk_rvalueref|clk_class)); in reference_binding()
Dtypeck.cc6808 if (strict_lvalue && (kind & (clk_rvalueref|clk_class))) in cp_build_addr_expr_1()
11264 else if (kind & (clk_rvalueref|clk_class)) in lvalue_or_else()
Dcp-tree.h5447 clk_class = 4, /* A prvalue of class or array type. */ enumerator
Dsemantics.cc11478 if (clk != clk_none && !(clk & clk_class)) in finish_decltype_type()
DChangeLog-20174532 * tree.c (lvalue_kind): Return clk_class for an array prvalue.