~ubuntu-branches/ubuntu/wily/cloog/wily-proposed

« back to all changes in this revision

Viewing changes to isl/include/isl/stream.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2015-04-24 15:07:57 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20150424150757-wumy8mdonvtgf29j
Tags: 0.18.3-1
* New upstream version.
* Update symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                        ISL_TOKEN_IMPLIES,
40
40
                        ISL_TOKEN_LAST };
41
41
 
42
 
struct isl_token {
43
 
        int type;
44
 
 
45
 
        unsigned int on_new_line : 1;
46
 
        unsigned is_keyword : 1;
47
 
        int line;
48
 
        int col;
49
 
 
50
 
        union {
51
 
                isl_int v;
52
 
                char    *s;
53
 
                isl_map *map;
54
 
                isl_pw_aff *pwaff;
55
 
        } u;
56
 
};
 
42
struct isl_token;
57
43
 
58
44
__isl_give isl_val *isl_token_get_val(isl_ctx *ctx, struct isl_token *tok);
59
45
__isl_give char *isl_token_get_str(isl_ctx *ctx, struct isl_token *tok);