Commit fb57dc0b by Jakub Jelinek Committed by Jakub Jelinek

tree.h (struct tree_omp_clause): Use OMP_CLAUSE_CODE rather than TREE_CODE as…

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
parent f4daf7e4
2006-02-15 Jakub Jelinek <jakub@redhat.com>
* tree.h (struct tree_omp_clause): Use OMP_CLAUSE_CODE rather
than TREE_CODE as index into omp_clause_num_ops array.
2006-02-15 Uttam Pawar <uttamp@us.ibm.com> 2006-02-15 Uttam Pawar <uttamp@us.ibm.com>
PR rtl-optimization/26184 PR rtl-optimization/26184
......
...@@ -1786,7 +1786,7 @@ struct tree_omp_clause GTY(()) ...@@ -1786,7 +1786,7 @@ struct tree_omp_clause GTY(())
enum omp_clause_schedule_kind schedule_kind; enum omp_clause_schedule_kind schedule_kind;
enum tree_code reduction_code; enum tree_code reduction_code;
} GTY ((skip)) subcode; } 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];
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment