repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_basic_map_normalize_constraints: avoid NULL pointer dereference
[isl.git]
/
isl_point_private.h
blob
fbf1ee95841a561e4e990fcf7ce6d2d5b3bc0857
1
#include <isl_dim.h>
2
#include <isl_point.h>
3
#include <isl_vec.h>
4
5
struct
isl_point
{
6
int
ref
;
7
struct
isl_dim
*
dim
;
8
struct
isl_vec
*
vec
;
9
};
10
11
__isl_give isl_point
*
isl_point_alloc
(
__isl_take isl_dim
*
dim
,
12
__isl_take isl_vec
*
vec
);