diff options
author | rodrigc <rodrigc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 14:26:07 +0000 |
---|---|---|
committer | rodrigc <rodrigc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 14:26:07 +0000 |
commit | 523ac844856812d4be2c4c4d2221ff19efc30dae (patch) | |
tree | a6e5dfa0033cccdbd5f2cbe47102d6d4c0c5e80e /gcc/cp/mangle.c | |
parent | 1deb4c043b5c2b760947a4b33a165ad77afccdb0 (diff) | |
download | gcc-523ac844856812d4be2c4c4d2221ff19efc30dae.tar.gz |
2002-01-23 Craig Rodrigues <rodrigc@gcc.gnu.org>
* call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
Change my_fancy_abort() to abort().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49139 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/mangle.c')
-rw-r--r-- | gcc/cp/mangle.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index 63f3a0461ad..8a230d2566b 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -361,7 +361,7 @@ add_substitution (node) || (TYPE_P (node) && TYPE_P (candidate) && same_type_p (node, candidate))) - my_friendly_abort (20000524); + abort (); } } #endif /* ENABLE_CHECKING */ @@ -779,7 +779,7 @@ write_unscoped_name (decl) || TREE_CODE (context) == FUNCTION_DECL) write_unqualified_name (decl); else - my_friendly_abort (20000521); + abort (); } /* <unscoped-template-name> ::= <unscoped-name> @@ -923,7 +923,7 @@ write_template_prefix (node) template = CLASSTYPE_TI_TEMPLATE (type); else /* Oops, not a template. */ - my_friendly_abort (20000524); + abort (); /* For a member template, though, the template name for the innermost name must have all the outer template levels @@ -1185,7 +1185,7 @@ write_special_name_constructor (ctor) else if (DECL_BASE_CONSTRUCTOR_P (ctor)) write_string ("C2"); else - my_friendly_abort (20001115); + abort (); } /* Handle destructor productions of non-terminal <special-name>. @@ -1214,7 +1214,7 @@ write_special_name_destructor (dtor) else if (DECL_BASE_DESTRUCTOR_P (dtor)) write_string ("D2"); else - my_friendly_abort (20001115); + abort (); } /* Return the discriminator for ENTITY appearing inside @@ -1445,7 +1445,7 @@ write_type (type) break; default: - my_friendly_abort (20000409); + abort (); } } @@ -1558,7 +1558,7 @@ write_builtin_type (type) tree t = type_for_mode (TYPE_MODE (type), TREE_UNSIGNED (type)); if (type == t) /* Couldn't find this type. */ - my_friendly_abort (20000408); + abort (); type = t; goto iagain; } @@ -1575,11 +1575,11 @@ write_builtin_type (type) else if (type == long_double_type_node) write_char ('e'); else - my_friendly_abort (20000409); + abort (); break; default: - my_friendly_abort (20000509); + abort (); } } @@ -1877,7 +1877,7 @@ write_template_arg_literal (value) else if (value == boolean_true_node) write_unsigned_number (1); else - my_friendly_abort (20000412); + abort (); } else write_integer_cst (value); @@ -1902,7 +1902,7 @@ write_template_arg_literal (value) #endif } else - my_friendly_abort (20000412); + abort (); write_char ('E'); } @@ -2069,7 +2069,7 @@ write_template_param (parm) break; default: - my_friendly_abort (20000523); + abort (); } write_char ('T'); @@ -2477,6 +2477,6 @@ write_java_integer_type_codes (type) else if (type == java_boolean_type_node) write_char ('b'); else - my_friendly_abort (20001207); + abort (); } |