This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [C++ PATCH] Fix PR/8046
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: "Giovanni Bajo" <giovannibajo at libero dot it>
- Cc: <gcc-patches at gcc dot gnu dot org>
- Date: 27 Jun 2003 23:47:44 +0200
- Subject: Re: [C++ PATCH] Fix PR/8046
- Organization: Integrable Solutions
- References: <407c01c33b8c$3dfb1070$114e2697@bagio>
"Giovanni Bajo" <giovannibajo@libero.it> writes:
| + case BIT_NOT_EXPR:
| + /* This is a pseudo distructor call which has not been folded into
| + a PSEUDO_DTOR_EXPR yet. */
| + print_identifier (scratch_buffer, "~");
I would write the above
output_add_character (scratch_buffer, '~');
with that change, it is OK.
Thanks,
-- Gaby