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
add isl_union_pw_aff_floor
[isl.git]
/
isl_stream_private.h
blob
d5d4422127f6af3b7c1bd17f5edc6009aab5a069
1
#include <isl_int.h>
2
#include <isl/stream.h>
3
4
struct
isl_token
{
5
int
type
;
6
7
unsigned int
on_new_line
:
1
;
8
unsigned
is_keyword
:
1
;
9
int
line
;
10
int
col
;
11
12
union
{
13
isl_int v
;
14
char
*
s
;
15
isl_map
*
map
;
16
isl_pw_aff
*
pwaff
;
17
}
u
;
18
};
19
20
struct
isl_token
*
isl_token_new
(
isl_ctx
*
ctx
,
21
int
line
,
int
col
,
unsigned
on_new_line
);