Home
last modified time | relevance | path

Searched refs:arg_num_expr (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/lto/
H A Dlto-lang.c306 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp) in get_nonnull_operand() argument
309 if (TREE_CODE (arg_num_expr) != INTEGER_CST in get_nonnull_operand()
310 || TREE_INT_CST_HIGH (arg_num_expr) != 0) in get_nonnull_operand()
313 *valp = TREE_INT_CST_LOW (arg_num_expr); in get_nonnull_operand()
/dragonfly/contrib/gcc-8.0/gcc/lto/
H A Dlto-lang.c378 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp) in get_nonnull_operand() argument
381 if (!tree_fits_uhwi_p (arg_num_expr)) in get_nonnull_operand()
384 *valp = TREE_INT_CST_LOW (arg_num_expr); in get_nonnull_operand()
/dragonfly/contrib/gcc-4.7/gcc/c-family/
H A Dc-common.c7948 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp) in get_nonnull_operand() argument
7951 if (TREE_CODE (arg_num_expr) != INTEGER_CST in get_nonnull_operand()
7952 || TREE_INT_CST_HIGH (arg_num_expr) != 0) in get_nonnull_operand()
7955 *valp = TREE_INT_CST_LOW (arg_num_expr); in get_nonnull_operand()
/dragonfly/contrib/gcc-8.0/gcc/c-family/
H A Dc-common.c5419 get_nonnull_operand (tree arg_num_expr, unsigned HOST_WIDE_INT *valp) in get_nonnull_operand() argument
5422 if (tree_fits_uhwi_p (arg_num_expr)) in get_nonnull_operand()
5424 *valp = tree_to_uhwi (arg_num_expr); in get_nonnull_operand()