加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
check_type_range_templ.c 547 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sven Verdoolaege 提交于 2018-08-07 12:09 . isl_*_dim: return isl_size
#define xFN(TYPE,NAME) TYPE ## _ ## NAME
#define FN(TYPE,NAME) xFN(TYPE,NAME)
/* Check that there are "n" dimensions of type "type" starting at "first"
* in "obj".
*/
isl_stat FN(TYPE,check_range)(__isl_keep TYPE *obj,
enum isl_dim_type type, unsigned first, unsigned n)
{
isl_size dim;
dim = FN(TYPE,dim)(obj, type);
if (dim < 0)
return isl_stat_error;
if (first + n > dim || first + n < first)
isl_die(FN(TYPE,get_ctx)(obj), isl_error_invalid,
"position or range out of bounds",
return isl_stat_error);
return isl_stat_ok;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化