diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2015-12-04 08:52:24 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2015-12-04 08:52:24 +0000 |
commit | f187980b5e132d0b5d36b5ade6a42ef8cfdb5560 (patch) | |
tree | b16a2c27bac9f26c0ff11a13cad8c6b616765564 /gcc/c/c-tree.h | |
parent | e315eea9d086ffef705ae96a04ef1b15cfec7745 (diff) | |
download | gcc-f187980b5e132d0b5d36b5ade6a42ef8cfdb5560.zip gcc-f187980b5e132d0b5d36b5ade6a42ef8cfdb5560.tar.gz gcc-f187980b5e132d0b5d36b5ade6a42ef8cfdb5560.tar.bz2 |
c-tree.h (c_build_va_arg): Adjust prototype.
* c-tree.h (c_build_va_arg): Adjust prototype.
* c-parser.c (c_parser_postfix_expression): Adjust call to above.
* c-typeck.c (c_build_va_arg): Rename LOC parameter to LOC2, add LOC1
parameter, adjust throughout and issue an error if EXPR is a component
with reverse storage order.
From-SVN: r231250
Diffstat (limited to 'gcc/c/c-tree.h')
-rw-r--r-- | gcc/c/c-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-tree.h b/gcc/c/c-tree.h index 1c07065..00e72b1 100644 --- a/gcc/c/c-tree.h +++ b/gcc/c/c-tree.h @@ -661,7 +661,7 @@ extern tree c_finish_omp_task (location_t, tree, tree); extern void c_finish_omp_cancel (location_t, tree); extern void c_finish_omp_cancellation_point (location_t, tree); extern tree c_finish_omp_clauses (tree, bool, bool = false); -extern tree c_build_va_arg (location_t, tree, tree); +extern tree c_build_va_arg (location_t, tree, location_t, tree); extern tree c_finish_transaction (location_t, tree, int); extern bool c_tree_equal (tree, tree); extern tree c_build_function_call_vec (location_t, vec<location_t>, tree, |