This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [lto] Fix locus information in decls and expressions
- From: Pedro Alves <pedro at codesourcery dot com>
- To: gcc-patches at gcc dot gnu dot org
- Cc: Diego Novillo <dnovillo at google dot com>
- Date: Fri, 15 May 2009 19:12:30 +0100
- Subject: Re: [lto] Fix locus information in decls and expressions
- References: <20090515174241.GA507@google.com>
On Friday 15 May 2009 18:42:41, Diego Novillo wrote:
> +#define LTO_SOURCE_FILE ? ?1 << 0
> +#define LTO_SOURCE_LINE ? ?1 << 1
> +#define LTO_SOURCE_COL ? ? 1 << 2
> +#define LTO_SOURCE_HAS_LOC 1 << 3
These should be guarded with ()'s
#define LTO_SOURCE_HAS_LOC (1 << 3)
--
Pedro Alves