diff options
author | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-06 13:41:46 +0000 |
---|---|---|
committer | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-03-06 13:41:46 +0000 |
commit | 3bfdc94f566983f2cc40dca1fca9925a8175f0da (patch) | |
tree | 2d668c3e9bd8ebb785bab61a9adb5b1d97776036 /gcc/c | |
parent | ec5f5503d57404e3c4c264cf56d9e87861da3ec1 (diff) | |
download | ppe42-gcc-3bfdc94f566983f2cc40dca1fca9925a8175f0da.tar.gz ppe42-gcc-3bfdc94f566983f2cc40dca1fca9925a8175f0da.zip |
PR c/60197
c-family/
* cilk.c (contains_cilk_spawn_stmt): New function.
(contains_cilk_spawn_stmt_walker): Likewise.
(recognize_spawn): Give error on invalid use of _Cilk_spawn.
* c-common.h (contains_cilk_spawn_stmt): Add declaration.
c/
* c-typeck.c (c_finish_return): Call contains_cilk_spawn_stmt instead
of checking tree code.
cp/
* typeck.c (check_return_expr): Call contains_cilk_spawn_stmt instead
of checking tree code.
testsuite/
* c-c++-common/cilk-plus/CK/pr60197.c: New test.
* c-c++-common/cilk-plus/CK/pr60197-2.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@208382 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c/c-typeck.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 5e482a3a22a..e9d25d5b866 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,9 @@ +2014-03-06 Marek Polacek <polacek@redhat.com> + + PR c/60197 + * c-typeck.c (c_finish_return): Call contains_cilk_spawn_stmt instead + of checking tree code. + 2014-02-19 Prathamesh Kulkarni <bilbotheelffriend@gmail.com> * c-parser.c (c_parser_declspecs): Replace call to error by error_at. diff --git a/gcc/c/c-typeck.c b/gcc/c/c-typeck.c index 2b542903ba9..7c4ba0eb225 100644 --- a/gcc/c/c-typeck.c +++ b/gcc/c/c-typeck.c @@ -9140,7 +9140,7 @@ c_finish_return (location_t loc, tree retval, tree origtype) return error_mark_node; } } - if (flag_cilkplus && retval && TREE_CODE (retval) == CILK_SPAWN_STMT) + if (flag_cilkplus && retval && contains_cilk_spawn_stmt (retval)) { error_at (loc, "use of %<_Cilk_spawn%> in a return statement is not " "allowed"); |