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

« back to all changes in this revision

Viewing changes to include/cloog/input.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-15 18:39:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111215183917-uqggmujou8wna9js
Tags: 0.17.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
extern "C" {
6
6
#endif 
7
7
 
 
8
struct osl_scop;
 
9
 
8
10
struct clooginput {
9
11
        CloogDomain *context;
10
12
        CloogUnionDomain *ud;
11
13
};
12
14
typedef struct clooginput CloogInput;
13
15
 
 
16
CloogInput *cloog_input_from_osl_scop(CloogState *, struct osl_scop *);
14
17
CloogInput *cloog_input_read(FILE *file, CloogOptions *options);
15
18
CloogInput *cloog_input_alloc(CloogDomain *context, CloogUnionDomain *ud);
16
19
void cloog_input_free(CloogInput *input);