diff options
author | Ian Lance Taylor <ian@airs.com> | 2005-04-17 21:27:47 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2005-04-17 21:27:47 +0000 |
commit | 03a0866432efadc888d6a65651943b89e2ae6eb0 (patch) | |
tree | 8d0efbde4233e83950ce2bef9c8a5c3377334df2 /gcc/c-common.def | |
parent | 81a60083ea5e7aa3ccd994dd6fefc3d4099303af (diff) | |
download | gcc-03a0866432efadc888d6a65651943b89e2ae6eb0.zip gcc-03a0866432efadc888d6a65651943b89e2ae6eb0.tar.gz gcc-03a0866432efadc888d6a65651943b89e2ae6eb0.tar.bz2 |
c-common.def (SIZEOF_EXPR, [...]): Remove.
./ * c-common.def (SIZEOF_EXPR, ARROW_EXPR, ALIGNOF_EXPR): Remove.
* c-common.c (c_sizeof_or_alignof_type): Change second parameter
from enum tree_code op to bool is_sizeof.
* c-common.h (c_sizeof_or_alignof_type): Update declaration.
(c_sizeof, c_alignof): Update calls to c_sizeof_or_alignof_type.
* c-pretty-print.c (pp_c_postfix_expression): Remove ARROW_EXPR
case.
(pp_c_unary_expression): Remove SIZEOF_EXPR and ALIGNOF_EXPR
cases.
(pp_c_expression): Remove ARROW_EXPR, SIZEOF_EXPR, and
ALIGNOF_EXPR cases.
cp/
* cp-tree.def: Add SIZEOF_EXPR, ARROW_EXPR and ALIGNOF_EXPR.
* cxx-pretty-print.c (pp_cxx_postfix_expression): Handle
ARROW_EXPR.
(pp_cxx_unary_expression): Handle SIZEOF_EXPR and ALIGNOF_EXPR.
(pp_cxx_expression): Handle ARROW_EXPR, SIZEOF_EXPR, and
ALIGNOF_EXPR.
* typeck.c (cxx_sizeof_or_alignof_type): Update call to
c_sizeof_or_alignof_type for change in parameter type.
From-SVN: r98297
Diffstat (limited to 'gcc/c-common.def')
-rw-r--r-- | gcc/c-common.def | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/c-common.def b/gcc/c-common.def index 381fe4ef..b352364 100644 --- a/gcc/c-common.def +++ b/gcc/c-common.def @@ -25,10 +25,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Tree nodes relevant to both C and C++. These were originally in cp-tree.def in the cp subdir. */ -DEFTREECODE (SIZEOF_EXPR, "sizeof_expr", tcc_unary, 1) -DEFTREECODE (ARROW_EXPR, "arrow_expr", tcc_expression, 1) -DEFTREECODE (ALIGNOF_EXPR, "alignof_expr", tcc_unary, 1) - /* Used to represent an expression statement. Use `EXPR_STMT_EXPR' to obtain the expression. */ DEFTREECODE (EXPR_STMT, "expr_stmt", tcc_expression, 1) |