summaryrefslogtreecommitdiff
path: root/cloog-0.16.3/include/cloog/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'cloog-0.16.3/include/cloog/state.h')
-rw-r--r--cloog-0.16.3/include/cloog/state.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/cloog-0.16.3/include/cloog/state.h b/cloog-0.16.3/include/cloog/state.h
deleted file mode 100644
index ebc3272..0000000
--- a/cloog-0.16.3/include/cloog/state.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef CLOOG_STATE_H
-#define CLOOG_STATE_H
-
-struct cloogbackend;
-typedef struct cloogbackend CloogBackend;
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-struct cloogstate {
- CloogBackend *backend;
-
- cloog_int_t zero;
- cloog_int_t one;
- cloog_int_t negone;
-
- int block_allocated;
- int block_freed;
- int block_max;
-
- int domain_allocated;
- int domain_freed;
- int domain_max;
-
- int loop_allocated;
- int loop_freed;
- int loop_max;
-
- int statement_allocated;
- int statement_freed;
- int statement_max;
-};
-typedef struct cloogstate CloogState;
-
-CloogState *cloog_core_state_malloc(void);
-CloogState *cloog_state_malloc(void);
-
-void cloog_core_state_free(CloogState *state);
-void cloog_state_free(CloogState *state);
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif