public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "hjl at gcc dot gnu dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/35189] -mno-sse4.2 turns off SSE4a
Date: Fri, 07 Mar 2008 00:09:00 -0000	[thread overview]
Message-ID: <20080307000830.31474.qmail@sourceware.org> (raw)
In-Reply-To: <bug-35189-682@http.gcc.gnu.org/bugzilla/>



------- Comment #7 from hjl at gcc dot gnu dot org  2008-03-07 00:08 -------
Subject: Bug 35189

Author: hjl
Date: Fri Mar  7 00:07:36 2008
New Revision: 132994

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=132994
Log:
gcc/

2008-03-06  H.J. Lu  <hongjiu.lu@intel.com>

        Backport from mainline:
        2008-02-18  H.J. Lu  <hongjiu.lu@intel.com>

        PR target/35189
        * config/i386/i386.c (OPTION_MASK_ISA_MMX_SET): New.
        (OPTION_MASK_ISA_3DNOW_SET): Likewise.
        (OPTION_MASK_ISA_SSE_SET): Likewise.
        (OPTION_MASK_ISA_SSE2_SET): Likewise.
        (OPTION_MASK_ISA_SSE3_SET): Likewise.
        (OPTION_MASK_ISA_SSSE3_SET): Likewise.
        (OPTION_MASK_ISA_SSE4_1_SET): Likewise.
        (OPTION_MASK_ISA_SSE4_2_SET): Likewise.
        (OPTION_MASK_ISA_SSE4_SET): Likewise.
        (OPTION_MASK_ISA_SSE4A_SET): Likewise.
        (OPTION_MASK_ISA_SSE5_SET): Likewise.
        (OPTION_MASK_ISA_3DNOW_A_UNSET): Likewise.
        (OPTION_MASK_ISA_MMX_UNSET): Updated.
        (OPTION_MASK_ISA_3DNOW_UNSET): Updated.
        (OPTION_MASK_ISA_SSE_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE3_UNSET): Likewise.
        (OPTION_MASK_ISA_SSSE3_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE4_1_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE4_2_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE4A_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE5_UNSET): Likewise.
        (OPTION_MASK_ISA_SSE4): Removed.
        (ix86_handle_option): Turn on bits in ix86_isa_flags and
        ix86_isa_flags_explicit with OPTION_MASK_ISA_XXX_SET for
        -mXXX.
        (override_options): Don't turn on implied SSE/MMX bits in
        ix86_isa_flags.

gcc/testsuite/

2008-03-06  H.J. Lu  <hongjiu.lu@intel.com>

        Backport from mainline:
        2008-02-18  H.J. Lu  <hongjiu.lu@intel.com>

        PR target/35189
        * gcc.target/i386/isa-1.c: New.
        * gcc.target/i386/isa-2.c: Likewise.
        * gcc.target/i386/isa-3.c: Likewise.
        * gcc.target/i386/isa-4.c: Likewise.
        * gcc.target/i386/isa-5.c: Likewise.
        * gcc.target/i386/isa-6.c: Likewise.
        * gcc.target/i386/isa-7.c: Likewise.
        * gcc.target/i386/isa-8.c: Likewise.
        * gcc.target/i386/isa-9.c: Likewise.
        * gcc.target/i386/isa-10.c: Likewise.
        * gcc.target/i386/isa-11.c: Likewise.
        * gcc.target/i386/isa-12.c: Likewise.
        * gcc.target/i386/isa-13.c: Likewise.
        * gcc.target/i386/isa-14.c: Likewise.

Added:
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-1.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-10.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-11.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-12.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-13.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-14.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-2.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-3.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-4.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-5.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-6.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-7.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-8.c
    branches/gcc-4_3-branch/gcc/testsuite/gcc.target/i386/isa-9.c
Modified:
    branches/gcc-4_3-branch/gcc/ChangeLog
    branches/gcc-4_3-branch/gcc/config/i386/i386.c
    branches/gcc-4_3-branch/gcc/testsuite/ChangeLog


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35189


  parent reply	other threads:[~2008-03-07  0:09 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-13 23:42 [Bug target/35189] New: " hjl dot tools at gmail dot com
2008-02-13 23:50 ` [Bug target/35189] " pinskia at gcc dot gnu dot org
2008-02-13 23:55 ` michael dot meissner at amd dot com
2008-02-14  0:12 ` hjl dot tools at gmail dot com
2008-02-14  0:21 ` michael dot meissner at amd dot com
2008-02-14  1:45 ` hjl dot tools at gmail dot com
2008-02-19  1:22 ` hjl at gcc dot gnu dot org
2008-03-07  0:09 ` hjl at gcc dot gnu dot org [this message]
2008-03-07  4:25 ` hjl dot tools at gmail dot com
2008-03-07  6:50 ` ubizjak at gmail dot com

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080307000830.31474.qmail@sourceware.org \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).