diff options
Diffstat (limited to 'gcc/c-family/c-common.h')
-rw-r--r-- | gcc/c-family/c-common.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index d9d2c44097a..b931fd6d2a8 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -970,7 +970,7 @@ enum lvalue_use { lv_asm }; -extern void readonly_error (tree, enum lvalue_use); +extern void readonly_error (location_t, tree, enum lvalue_use); extern void lvalue_error (location_t, enum lvalue_use); extern void invalid_indirection_error (location_t, tree, ref_operator); @@ -1289,6 +1289,11 @@ enum stv_conv { extern enum stv_conv scalar_to_vector (location_t loc, enum tree_code code, tree op0, tree op1, bool); +/* In c-cilkplus.c */ +extern tree c_finish_cilk_clauses (tree); +extern tree c_validate_cilk_plus_loop (tree *, int *, void *); +extern bool c_check_cilk_loop (location_t, tree); + /* These #defines allow users to access different operands of the array notation tree. */ |