diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-02-15 21:38:59 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2006-02-15 21:38:59 +0100 |
commit | fb57dc0bf0b060e936dbb376ceca3eca35c15787 (patch) | |
tree | cd16013032b3793b8fe41cbe9ef95619c851a9d9 /gcc/tree.h | |
parent | f4daf7e44e61ed8987d419a692015de25405be70 (diff) | |
download | gcc-fb57dc0bf0b060e936dbb376ceca3eca35c15787.zip gcc-fb57dc0bf0b060e936dbb376ceca3eca35c15787.tar.gz gcc-fb57dc0bf0b060e936dbb376ceca3eca35c15787.tar.bz2 |
tree.h (struct tree_omp_clause): Use OMP_CLAUSE_CODE rather than TREE_CODE as index into omp_clause_num_ops array.
* tree.h (struct tree_omp_clause): Use OMP_CLAUSE_CODE rather
than TREE_CODE as index into omp_clause_num_ops array.
From-SVN: r111115
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1786,7 +1786,7 @@ struct tree_omp_clause GTY(()) enum omp_clause_schedule_kind schedule_kind; enum tree_code reduction_code; } GTY ((skip)) subcode; - tree GTY ((length ("omp_clause_num_ops[TREE_CODE ((tree)&%h)]"))) ops[1]; + tree GTY ((length ("omp_clause_num_ops[OMP_CLAUSE_CODE ((tree)&%h)]"))) ops[1]; }; |