source: Daodan/MSYS2/mingw32/include/isl/stride_info.h@ 1179

Last change on this file since 1179 was 1166, checked in by rossy, 3 years ago

Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File size: 720 bytes
Line 
1/*
2 * Use of this software is governed by the MIT license
3 */
4
5#ifndef ISL_STRIDE_INFO_H
6#define ISL_STRIDE_INFO_H
7
8#include <isl/val.h>
9#include <isl/aff_type.h>
10
11#if defined(__cplusplus)
12extern "C" {
13#endif
14
15struct isl_stride_info;
16typedef struct isl_stride_info isl_stride_info;
17
18isl_ctx *isl_stride_info_get_ctx(__isl_keep isl_stride_info *si);
19__isl_give isl_val *isl_stride_info_get_stride(__isl_keep isl_stride_info *si);
20__isl_give isl_aff *isl_stride_info_get_offset(__isl_keep isl_stride_info *si);
21__isl_null isl_stride_info *isl_stride_info_free(
22 __isl_take isl_stride_info *si);
23__isl_give isl_stride_info *isl_stride_info_copy(
24 __isl_keep isl_stride_info *si);
25
26#if defined(__cplusplus)
27}
28#endif
29
30#endif
Note: See TracBrowser for help on using the repository browser.