diff options
author | Prathamesh Kulkarni <bilbotheelffriend@gmail.com> | 2014-02-07 22:09:01 +0000 |
---|---|---|
committer | Marek Polacek <mpolacek@gcc.gnu.org> | 2014-02-07 22:09:01 +0000 |
commit | b581c05cd9f25891505720ec8a41bfab5d13eb43 (patch) | |
tree | 89c4da6c8a6cd773e01cc54180546307b9f5811e /gcc/c/c-tree.h | |
parent | 63fefb4bc9364120209dd9cefcf22e2e93cf6b8c (diff) | |
download | gcc-b581c05cd9f25891505720ec8a41bfab5d13eb43.zip gcc-b581c05cd9f25891505720ec8a41bfab5d13eb43.tar.gz gcc-b581c05cd9f25891505720ec8a41bfab5d13eb43.tar.bz2 |
c-parser.c (c_parser_get_builtin_args): Replace calls to C_EXPR_APPEND by vec_safe_push.
* c-parser.c (c_parser_get_builtin_args): Replace calls to
C_EXPR_APPEND by vec_safe_push.
* c-tree.h (C_EXPR_APPEND): Remove.
From-SVN: r207614
Diffstat (limited to 'gcc/c/c-tree.h')
-rw-r--r-- | gcc/c/c-tree.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/c/c-tree.h b/gcc/c/c-tree.h index add1405..84d5e0b 100644 --- a/gcc/c/c-tree.h +++ b/gcc/c/c-tree.h @@ -132,15 +132,6 @@ struct c_expr inside the VEC types. */ typedef struct c_expr c_expr_t; -/* A varray of c_expr_t. */ - -/* Append a new c_expr_t element to V. */ -#define C_EXPR_APPEND(V, ELEM) \ - do { \ - c_expr_t __elem = (ELEM); \ - vec_safe_push (V, __elem); \ - } while (0) - /* A kind of type specifier. Note that this information is currently only used to distinguish tag definitions, tag references and typeof uses. */ |