summaryrefslogtreecommitdiffstats
path: root/polly/lib/External/isl/isl_stream_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/External/isl/isl_stream_private.h')
-rw-r--r--polly/lib/External/isl/isl_stream_private.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/polly/lib/External/isl/isl_stream_private.h b/polly/lib/External/isl/isl_stream_private.h
new file mode 100644
index 00000000000..d5d4422127f
--- /dev/null
+++ b/polly/lib/External/isl/isl_stream_private.h
@@ -0,0 +1,21 @@
+#include <isl_int.h>
+#include <isl/stream.h>
+
+struct isl_token {
+ int type;
+
+ unsigned int on_new_line : 1;
+ unsigned is_keyword : 1;
+ int line;
+ int col;
+
+ union {
+ isl_int v;
+ char *s;
+ isl_map *map;
+ isl_pw_aff *pwaff;
+ } u;
+};
+
+struct isl_token *isl_token_new(isl_ctx *ctx,
+ int line, int col, unsigned on_new_line);
OpenPOWER on IntegriCloud