diff options
Diffstat (limited to 'gcc/cp/repo.c')
-rw-r--r-- | gcc/cp/repo.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/cp/repo.c b/gcc/cp/repo.c index 8d27740..8688771 100644 --- a/gcc/cp/repo.c +++ b/gcc/cp/repo.c @@ -264,11 +264,10 @@ finish_repo (void) int repo_emit_p (tree decl) { - my_friendly_assert (TREE_PUBLIC (decl), 20040725); - my_friendly_assert (TREE_CODE (decl) == FUNCTION_DECL - || TREE_CODE (decl) == VAR_DECL, - 20040725); - my_friendly_assert (!DECL_REALLY_EXTERN (decl), 20040725); + gcc_assert (TREE_PUBLIC (decl)); + gcc_assert (TREE_CODE (decl) == FUNCTION_DECL + || TREE_CODE (decl) == VAR_DECL); + gcc_assert (!DECL_REALLY_EXTERN (decl)); /* When not using the repository, emit everything. */ if (!flag_use_repository) |