~ubuntu-branches/ubuntu/trusty/cloog/trusty

« back to all changes in this revision

Viewing changes to isl/isl_ast_private.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-10-17 15:54:24 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20131017155424-3q1gw7yhddylfkpj
Tags: 0.18.1-1
* New upstream version.
* Add a comment to build-depend on libpod-latex-perl | perl (<< 5.17.0),
  when the documentation is built. Closes: #711681.
* Use dh_autotools-dev to update config.{sub,guess}. Closes: #719957.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
        enum isl_ast_expr_type type;
20
20
 
21
21
        union {
22
 
                isl_int i;
 
22
                isl_val *v;
23
23
                isl_id *id;
24
24
                struct {
25
25
                        enum isl_ast_op_type op;
34
34
 
35
35
#include <isl_list_templ.h>
36
36
 
37
 
__isl_give isl_ast_expr *isl_ast_expr_alloc_int(isl_ctx *ctx, isl_int i);
38
37
__isl_give isl_ast_expr *isl_ast_expr_alloc_int_si(isl_ctx *ctx, int i);
39
38
__isl_give isl_ast_expr *isl_ast_expr_alloc_op(isl_ctx *ctx,
40
39
        enum isl_ast_op_type op, int n_arg);