This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Patch][C++/debug] SDB_DEBUG (-gcoff) vs record_builtin_type vs GAS - refresh
- From: Zack Weinberg <zack at codesourcery dot com>
- To: Danny Smith <danny_smith_0000 at yahoo dot co dot nz>
- Cc: GCC Patches <gcc-patches at gcc dot gnu dot org>
- Date: Sat, 30 Oct 2004 15:11:26 -0700
- Subject: Re: [Patch][C++/debug] SDB_DEBUG (-gcoff) vs record_builtin_type vs GAS - refresh
- References: <20041030085524.43863.qmail@web50901.mail.yahoo.com>
Danny Smith <danny_smith_0000@yahoo.co.nz> writes:
> This is a slightly revised version of patch submitted here:
> http://gcc.gnu.org/ml/gcc-patches/2004-06/msg01394.html
...
> + /* Don't output intrinsic types. GAS chokes on SDB .def
> + statements that contain identifiers with embedded spaces
> + (eg "unsigned long"). */
> + if (DECL_IS_BUILTIN (decl))
> + return;
I'm not totally sure that DECL_IS_BUILTIN is the right bit to be
checking. Can you please check that there's no other kind of
TYPE_DECL node that gets this bit set?
zw