aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>2017-05-02 09:39:02 -0600
committerJeff Law <law@gcc.gnu.org>2017-05-02 09:39:02 -0600
commit27c72a9bfd75deb3921327e6069fb2b426a91fec (patch)
treef9957ac428fc4d9dcf0a77ed023982581dc907d6 /gcc/tree.h
parent4e8bfd79138bdd9003c2437db3fee9a5b5d06cec (diff)
downloadgcc-27c72a9bfd75deb3921327e6069fb2b426a91fec.zip
gcc-27c72a9bfd75deb3921327e6069fb2b426a91fec.tar.gz
gcc-27c72a9bfd75deb3921327e6069fb2b426a91fec.tar.bz2
tree.h (EXPR_CILK_SPAWN): Use macro TREE_CHECK2 instead of function tree_check2.
2017-05-02 Xi Ruoyao <ryxi@stu.xidian.edu.cn> * tree.h (EXPR_CILK_SPAWN): Use macro TREE_CHECK2 instead of function tree_check2. From-SVN: r247508
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 5d02dc7..776056d 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -897,8 +897,8 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int,
/* If this is true, we should insert a __cilk_detach call just before
this function call. */
#define EXPR_CILK_SPAWN(NODE) \
- (tree_check2 (NODE, __FILE__, __LINE__, __FUNCTION__, \
- CALL_EXPR, AGGR_INIT_EXPR)->base.u.bits.unsigned_flag)
+ (TREE_CHECK2 (NODE, CALL_EXPR, \
+ AGGR_INIT_EXPR)->base.u.bits.unsigned_flag)
/* In a RESULT_DECL, PARM_DECL and VAR_DECL, means that it is
passed by invisible reference (and the TREE_TYPE is a pointer to the true