Commit 1ac4b8e4 by Thomas Schwinge Committed by Thomas Schwinge

tree.h (OMP_CLAUSE_CODE): Remove duplicate definition.

gcc/
	* tree.h (OMP_CLAUSE_CODE): Remove duplicate definition.

From-SVN: r203419
parent 451c19c4
2013-10-11 Thomas Schwinge <thomas@codesourcery.com> 2013-10-11 Thomas Schwinge <thomas@codesourcery.com>
* tree.h (OMP_CLAUSE_CODE): Remove duplicate definition.
* gimple.c: GIMPLE statements have subcodes, not sub-codes. * gimple.c: GIMPLE statements have subcodes, not sub-codes.
* gimple.h: Likewise. * gimple.h: Likewise.
......
...@@ -1419,9 +1419,6 @@ extern void protected_set_expr_location (tree, location_t); ...@@ -1419,9 +1419,6 @@ extern void protected_set_expr_location (tree, location_t);
#define OMP_CLAUSE_SET_CODE(NODE, CODE) \ #define OMP_CLAUSE_SET_CODE(NODE, CODE) \
((OMP_CLAUSE_CHECK (NODE))->omp_clause.code = (CODE)) ((OMP_CLAUSE_CHECK (NODE))->omp_clause.code = (CODE))
#define OMP_CLAUSE_CODE(NODE) \
(OMP_CLAUSE_CHECK (NODE))->omp_clause.code
#define OMP_CLAUSE_OPERAND(NODE, I) \ #define OMP_CLAUSE_OPERAND(NODE, I) \
OMP_CLAUSE_ELT_CHECK (NODE, I) OMP_CLAUSE_ELT_CHECK (NODE, I)
......
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