tree.h: Commentary typo fix

2015-04-08  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>

	* tree.h (CONVERT_EXPR_P): Commentary typo fix.

From-SVN: r221930
parent 17feae99
2015-04-08 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* tree.h (CONVERT_EXPR_P): Commentary typo fix.
2015-04-08 Gerald Pfeifer <gerald@pfeifer.com> 2015-04-08 Gerald Pfeifer <gerald@pfeifer.com>
* doc/extend.texi (__sync Builtins): Fix grammar. * doc/extend.texi (__sync Builtins): Fix grammar.
......
...@@ -428,7 +428,7 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int, ...@@ -428,7 +428,7 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int,
#define CONVERT_EXPR_CODE_P(CODE) \ #define CONVERT_EXPR_CODE_P(CODE) \
((CODE) == NOP_EXPR || (CODE) == CONVERT_EXPR) ((CODE) == NOP_EXPR || (CODE) == CONVERT_EXPR)
/* Similarly, but accept an expressions instead of a tree code. */ /* Similarly, but accept an expression instead of a tree code. */
#define CONVERT_EXPR_P(EXP) CONVERT_EXPR_CODE_P (TREE_CODE (EXP)) #define CONVERT_EXPR_P(EXP) CONVERT_EXPR_CODE_P (TREE_CODE (EXP))
/* Generate case for NOP_EXPR, CONVERT_EXPR. */ /* Generate case for NOP_EXPR, CONVERT_EXPR. */
......
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