diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-30 12:18:31 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-30 12:18:31 +0000 |
commit | 1d8fc210ec3dfcdea0d1f83885e75b4669ff9bc1 (patch) | |
tree | cc734d7b461afd69a7c14c6e990ecc000f934c0d /gcc/c-common.h | |
parent | 7f87d0962edfc5c412751c941f2a204661ba78ed (diff) | |
download | gcc-1d8fc210ec3dfcdea0d1f83885e75b4669ff9bc1.tar.gz |
* c-common.c (c_sizeof_or_alignof_type): Use gcc_assert.
(handle_visibility_attribute, c_determine_visibility): Likewise.
* c-common.h (my_friendly_assert): Remove.
* cp/cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Use gcc_assert.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86762 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 86706e6e817..4403ceee0fd 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -650,9 +650,6 @@ extern tree c_alignof_expr (tree); /* Print an error message for invalid operands to arith operation CODE. NOP_EXPR is used as a special case (see truthvalue_conversion). */ extern void binary_op_error (enum tree_code); -#define my_friendly_assert(EXP, N) (void) \ - (((EXP) == 0) ? (fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0) : 0) - extern tree fix_string_type (tree); struct varray_head_tag; extern void constant_expression_warning (tree); |