HomeSort by: relevance | last modified time | path
    Searched defs:upbound (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/c-family/
c-common.cc 6970 tree upbound = array_ref_up_bound (expr);
6971 if (upbound != NULL_TREE
6972 && TREE_CODE (upbound) == INTEGER_CST
6973 && !tree_int_cst_equal (upbound,
6974 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
6977 upbound = size_binop (PLUS_EXPR, upbound,
6978 build_int_cst (TREE_TYPE (upbound), 1));
6979 if (tree_int_cst_lt (upbound, t))
6954 tree upbound = array_ref_up_bound (expr); local
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-common.cc 6785 tree upbound = array_ref_up_bound (expr);
6786 if (upbound != NULL_TREE
6787 && TREE_CODE (upbound) == INTEGER_CST
6788 && !tree_int_cst_equal (upbound,
6789 TYPE_MAX_VALUE (TREE_TYPE (upbound))))
6792 upbound = size_binop (PLUS_EXPR, upbound,
6793 build_int_cst (TREE_TYPE (upbound), 1));
6794 if (tree_int_cst_lt (upbound, t))
6769 tree upbound = array_ref_up_bound (expr); local

Completed in 47 milliseconds