This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: i386 MMX/SSE support part 1: adding the registers
- To: Richard Henderson <rth at cygnus dot com>
- Subject: Re: i386 MMX/SSE support part 1: adding the registers
- From: Bernd Schmidt <bernds at masala dot cygnus dot co dot uk>
- Date: Mon, 26 Jun 2000 23:48:08 +0100 (BST)
- cc: gcc-patches at gcc dot gnu dot org
On Mon, 26 Jun 2000, Richard Henderson wrote:
> Ok.
>
> > + /* It makes no sense to ask for just SSE builtins, so MMX is also turned on
> > + by -msse. */
> > + #define TARGET_MMX ((target_flags & (MASK_SSE | MASK_MMX)) != 0)
>
> This can be done instead in TARGET_SWITCHES or override_options.
Committed with this modification (using override_options).
Bernd