summaryrefslogtreecommitdiff
path: root/gcc/tree-affine.h
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-03 01:44:44 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2007-08-03 01:44:44 +0000
commitfba7264c22371089ac76d32b4425690833fab500 (patch)
tree693f5558c7bf741f37428ccf8515969acb2cc019 /gcc/tree-affine.h
parent86e8cea9fcf56415cb527de720157fa11760c59b (diff)
downloadgcc-fba7264c22371089ac76d32b4425690833fab500.tar.gz
* Merge from mainline (125309:127169).
* tree-loop-distribution.c: Disabled. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/graphite@127175 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-affine.h')
-rw-r--r--gcc/tree-affine.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/tree-affine.h b/gcc/tree-affine.h
index 42ae230cf03..5da34bead9a 100644
--- a/gcc/tree-affine.h
+++ b/gcc/tree-affine.h
@@ -1,11 +1,11 @@
/* Operations with affine combinations of trees.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2007 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
-Free Software Foundation; either version 2, or (at your option) any
+Free Software Foundation; either version 3, or (at your option) any
later version.
GCC is distributed in the hope that it will be useful, but WITHOUT
@@ -14,9 +14,8 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
-along with GCC; see the file COPYING. If not, write to the Free
-Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
-02110-1301, USA. */
+along with GCC; see the file COPYING3. If not see
+<http://www.gnu.org/licenses/>. */
/* Affine combination of trees. We keep track of at most MAX_AFF_ELTS elements
to make things simpler; this is sufficient in most cases. */
@@ -54,7 +53,8 @@ typedef struct affine_tree_combination
struct aff_comb_elt elts[MAX_AFF_ELTS];
/* Remainder of the expression. Usually NULL, used only if there are more
- than MAX_AFF_ELTS elements. Type of REST must be TYPE. */
+ than MAX_AFF_ELTS elements. Type of REST will be either sizetype for
+ TYPE of POINTER_TYPEs or TYPE. */
tree rest;
} aff_tree;