diff options
Diffstat (limited to 'gcc/cp/error.c')
-rw-r--r-- | gcc/cp/error.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/error.c b/gcc/cp/error.c index 7814b68..dabac03 100644 --- a/gcc/cp/error.c +++ b/gcc/cp/error.c @@ -735,7 +735,7 @@ dump_decl (tree t, int flags) if (DECL_NAME (t) && VTABLE_NAME_P (DECL_NAME (t))) { pp_string (cxx_pp, "vtable for "); - my_friendly_assert (TYPE_P (DECL_CONTEXT (t)), 20010720); + gcc_assert (TYPE_P (DECL_CONTEXT (t))); dump_type (DECL_CONTEXT (t), flags); break; } @@ -1528,7 +1528,7 @@ dump_expr (tree t, int flags) if (TREE_HAS_CONSTRUCTOR (t)) { t = TREE_OPERAND (t, 0); - my_friendly_assert (TREE_CODE (t) == CALL_EXPR, 237); + gcc_assert (TREE_CODE (t) == CALL_EXPR); dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS); pp_cxx_left_paren (cxx_pp); dump_expr_list (TREE_CHAIN (TREE_OPERAND (t, 1)), flags); @@ -1761,7 +1761,7 @@ dump_expr (tree t, int flags) pp_cxx_identifier (cxx_pp, "sizeof"); else { - my_friendly_assert (TREE_CODE (t) == ALIGNOF_EXPR, 0); + gcc_assert (TREE_CODE (t) == ALIGNOF_EXPR); pp_cxx_identifier (cxx_pp, "__alignof__"); } pp_cxx_whitespace (cxx_pp); |