Searched refs:int_cst (Results 1 – 7 of 7) sorted by relevance
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | tree-core.h | 2046 struct tree_int_cst GTY ((tag ("TS_INT_CST"))) int_cst;
|
| D | tree.cc | 14990 tree int_cst = build_int_cst (integer_type_node, 42); in test_location_wrappers() local 14991 ASSERT_FALSE (CAN_HAVE_LOCATION_P (int_cst)); in test_location_wrappers() 14992 ASSERT_FALSE (location_wrapper_p (int_cst)); in test_location_wrappers() 14994 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc); in test_location_wrappers() 14997 ASSERT_EQ (int_cst, tree_strip_any_location_wrapper (wrapped_int_cst)); in test_location_wrappers() 15000 ASSERT_EQ (int_cst, maybe_wrap_with_location (int_cst, UNKNOWN_LOCATION)); in test_location_wrappers() 15003 tree cast = build1 (NOP_EXPR, char_type_node, int_cst); in test_location_wrappers() 15038 check_strip_nops (wrapped_int_cst, int_cst); in test_location_wrappers()
|
| D | tree.h | 412 #define TREE_INT_CST_ELT_CHECK(T, I) ((T)->int_cst.val[I]) 3649 return &CONST_CAST_TREE (__t)->int_cst.val[__i]; in tree_int_cst_elt_check() 3661 return &CONST_CAST_TREE (__t)->int_cst.val[__i]; in tree_int_cst_elt_check()
|
| D | dwarf2out.cc | 27242 tree int_cst = TREE_OPERAND (nop, 0); in is_trivial_indirect_ref() local 27243 return int_cst != NULL_TREE && TREE_CODE (int_cst) == INTEGER_CST; in is_trivial_indirect_ref()
|
| D | ChangeLog-2006 | 17395 * tree.h (struct tree_int_cst): Make type of int_cst double_int.
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/cp/ |
| D | tree.cc | 6196 tree int_cst = build_int_cst (integer_type_node, 42); in test_lvalue_kind() local 6197 ASSERT_EQ (clk_none, lvalue_kind (int_cst)); in test_lvalue_kind() 6199 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc); in test_lvalue_kind() 6229 ASSERT_FALSE (lvalue_p (int_cst)); in test_lvalue_kind()
|
| D | pt.cc | 30981 tree int_cst = build_int_cst (integer_type_node, 42); in test_build_non_dependent_expr() local 30982 ASSERT_EQ (int_cst, build_non_dependent_expr (int_cst)); in test_build_non_dependent_expr() 30984 tree wrapped_int_cst = maybe_wrap_with_location (int_cst, loc); in test_build_non_dependent_expr()
|