Home
last modified time | relevance | path

Searched refs:null_test (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dclass.c251 tree null_test = NULL; in build_base_path() local
406 null_test = error_mark_node; in build_base_path()
410 if (TREE_SIDE_EFFECTS (expr) && (null_test || virtual_access)) in build_base_path()
414 if (null_test) in build_base_path()
417 null_test = build2_loc (input_location, NE_EXPR, boolean_type_node, in build_base_path()
421 TREE_NO_WARNING (null_test) = 1; in build_base_path()
515 null_test = NULL; in build_base_path()
526 if (null_test) in build_base_path()
527 expr = fold_build3_loc (input_location, COND_EXPR, target_type, null_test, expr, in build_base_path()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dclass.cc262 tree null_test = NULL; in build_base_path() local
417 null_test = error_mark_node; in build_base_path()
421 if (TREE_SIDE_EFFECTS (expr) && (null_test || virtual_access)) in build_base_path()
425 if (null_test) in build_base_path()
426 null_test = expr; in build_base_path()
517 null_test = NULL; in build_base_path()
530 if (null_test) in build_base_path()
532 expr = build_if_nonnull (null_test, expr, complain); in build_base_path()
H A DChangeLog-20163697 * class.c (build_base_path): Set TREE_NO_WARNING on the null_test.