mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
92b3138b83
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
24 lines
690 B
C
24 lines
690 B
C
#ifndef ISL_LOCAL_H
|
|
#define ISL_LOCAL_H
|
|
|
|
#include <isl/mat.h>
|
|
#include <isl_reordering.h>
|
|
|
|
typedef isl_mat isl_local;
|
|
|
|
__isl_null isl_local *isl_local_free(__isl_take isl_local *local);
|
|
|
|
isl_bool isl_local_div_is_marked_unknown(__isl_keep isl_local *local, int pos);
|
|
isl_bool isl_local_div_is_known(__isl_keep isl_local *local, int pos);
|
|
isl_bool isl_local_divs_known(__isl_keep isl_local *local);
|
|
|
|
int isl_local_cmp(__isl_keep isl_local *local1, __isl_keep isl_local *local2);
|
|
|
|
__isl_give isl_local *isl_local_reorder(__isl_take isl_local *local,
|
|
__isl_take isl_reordering *r);
|
|
|
|
__isl_give isl_vec *isl_local_extend_point_vec(__isl_keep isl_local *local,
|
|
__isl_take isl_vec *v);
|
|
|
|
#endif
|