public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "marxin at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/101180] New: [12 Regression] Rejected code since r12-299-ga0fdff3cf33f7284
Date: Wed, 23 Jun 2021 13:05:38 +0000	[thread overview]
Message-ID: <bug-101180-4@http.gcc.gnu.org/bugzilla/> (raw)

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101180

            Bug ID: 101180
           Summary: [12 Regression] Rejected code since
                    r12-299-ga0fdff3cf33f7284
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: marxin at gcc dot gnu.org
                CC: jason at gcc dot gnu.org
  Target Milestone: ---

The code is reduced from Skia (part of chromium package):

$ cat enc.ii
#pragma GCC target "avx"
template <typename> struct Simd {};
#pragma GCC push_options
#pragma GCC target "avx,avx2,bmi,bmi2,fma,f16c"
template <typename T> using Full256 = Simd<T>;
template <typename> struct BitCastFromInteger256;
template <> struct BitCastFromInteger256<float> {
  __attribute__((always_inline)) float operator()(long) { return .0f; }
};
long BitCastFromByte_v_0;
template <typename T> void BitCastFromByte(Full256<T>) {
  T{BitCastFromInteger256<T>()(BitCastFromByte_v_0)};
}
template <typename T, typename FromT> void BitCast(T d, FromT) {
  BitCastFromByte(d);
}
int EstimateEntropy___trans_tmp_3;
void EstimateEntropy() {
  Simd<float> df;
  BitCast(df, EstimateEntropy___trans_tmp_3);
}
#pragma GCC pop_options

$ g++ enc.ii -c 
enc.ii: In function ‘void BitCastFromByte(Full256<T>) [with T = float]’:
enc.ii:8:40: error: inlining failed in call to ‘always_inline’ ‘float
BitCastFromInteger256<float>::operator()(long int)’: target specific option
mismatch
    8 |   __attribute__((always_inline)) float operator()(long) { return .0f; }
      |                                        ^~~~~~~~
enc.ii:12:31: note: called from here
   12 |   T{BitCastFromInteger256<T>()(BitCastFromByte_v_0)};
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~

             reply	other threads:[~2021-06-23 13:05 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-23 13:05 marxin at gcc dot gnu.org [this message]
2021-06-23 13:05 ` [Bug c++/101180] " marxin at gcc dot gnu.org
2021-11-18 18:01 ` jakub at gcc dot gnu.org
2021-11-18 18:26 ` jakub at gcc dot gnu.org
2021-11-19 21:10 ` cvs-commit at gcc dot gnu.org
2021-11-21 20:07 ` cvs-commit at gcc dot gnu.org
2021-11-22  9:58 ` jakub at gcc dot gnu.org
2021-11-25  7:42 ` cvs-commit at gcc dot gnu.org

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=bug-101180-4@http.gcc.gnu.org/bugzilla/ \
    --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).