diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-14 08:18:52 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-14 08:18:52 +0000 |
commit | fa4116b9cd220327ad120d86e659ed979c43322d (patch) | |
tree | 59512d95f59e2d511404595cfb81761bc8397be0 /gcc/graphite-cloog-compat.h | |
parent | 95525c1789fdb3c32561c86a2d12f44b6765cef1 (diff) | |
download | gcc-fa4116b9cd220327ad120d86e659ed979c43322d.tar.gz |
PR bootstrap/48102
* graphite-cloog-compat.h (build_cloog_prog): Remove STATE
parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170933 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-cloog-compat.h')
-rw-r--r-- | gcc/graphite-cloog-compat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/graphite-cloog-compat.h b/gcc/graphite-cloog-compat.h index b7a3b23cb5a..011377de8f5 100644 --- a/gcc/graphite-cloog-compat.h +++ b/gcc/graphite-cloog-compat.h @@ -1,6 +1,6 @@ /* Compatibility layer for using upstream CLooG versions with CLooG legacy code. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010, 2011 Free Software Foundation, Inc. Contributed by Andreas Simbuerger <simbuerg@fim.uni-passau.de>. This file is part of GCC. @@ -37,8 +37,8 @@ typedef const char *clast_name_p; #ifndef CLOOG_ORG /* CloogOptions compatibility. */ -#define build_cloog_prog(SCOP, PROG, OPT, STATE)\ - build_cloog_prog (SCOP, PROG, STATE) +#define build_cloog_prog(SCOP, PROG, OPT)\ + build_cloog_prog (SCOP, PROG) #define cloog_program_extract_scalars(PROG, SCATT, OPT)\ cloog_program_extract_scalars (PROG, SCATT) #define cloog_program_scatter(PROG, SCATT, OPT)\ |