]> gcc.gnu.org Git - gcc.git/blame - gcc/graphite-clast-to-gimple.h
New syntax for -fsanitize-recover.
[gcc.git] / gcc / graphite-clast-to-gimple.h
CommitLineData
2abae5f1 1/* Translation of CLAST (CLooG AST) to Gimple.
23a5b65a 2 Copyright (C) 2009-2014 Free Software Foundation, Inc.
2abae5f1
SP
3 Contributed by Sebastian Pop <sebastian.pop@amd.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_GRAPHITE_CLAST_TO_GIMPLE_H
22#define GCC_GRAPHITE_CLAST_TO_GIMPLE_H
23
db72d606
RG
24#include "graphite-htab.h"
25
57d598f7
SP
26extern CloogState *cloog_state;
27
2abae5f1
SP
28/* Data structure for CLooG program representation. */
29
84562394 30struct cloog_prog_clast {
2abae5f1
SP
31 CloogProgram *prog;
32 struct clast_stmt *stmt;
84562394 33};
2abae5f1 34
db72d606 35extern bool graphite_regenerate_ast_cloog (scop_p, bb_pbb_htab_type *);
2abae5f1
SP
36extern void debug_clast_stmt (struct clast_stmt *);
37extern void print_clast_stmt (FILE *, struct clast_stmt *);
2abae5f1 38
2abae5f1 39#endif
This page took 1.913205 seconds and 5 git commands to generate.