public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "nathan at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/99389] New: [modules] bad serialization of data
Date: Thu, 04 Mar 2021 19:26:00 +0000	[thread overview]
Message-ID: <bug-99389-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 99389
           Summary: [modules] bad serialization of data
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nathan at gcc dot gnu.org
  Target Milestone: ---

Triaging 99377 runs into this:

// bug_a.ii
template<typename _CharT>
class basic_string_view
{
public:
  basic_string_view(const _CharT* __str) noexcept
  {}
  bool
    empty() const noexcept
  { return !_M_len; }

private:
  unsigned _M_len;
};

using string_view = basic_string_view<char>;

// bug_b.ii
export module hello;

import "bug_a.ii";

export inline bool Check (const string_view& n)
{
  return !n.empty ();
}


// bug_c.ii
import hello;

int main ()
{
  return Check ("World") ? 0 : 1;
}

./cc1plus -quiet -fmodule-header   bug_a.ii && ./cc1plus -quiet -fmodules-ts
bug_b.ii && ./cc1plus -quiet -fmodules-ts bug_c.ii
In module imported at bug_c.ii:1:1:
hello: In function 'int main()':
hello: error: failed to read compiled module cluster 1: Bad file data
hello: note: compiled module file is 'gcm.cache/hello.gcm'
hello: error: failed to read compiled module cluster 2: Bad file data
bug_c.ii:5:10: fatal error: failed to load binding '::Check@hello'
    5 |   return Check ("World") ? 0 : 1;
      |          ^~~~~

we failed to find _M_len as that instantiation's not (yet?) loaded

             reply	other threads:[~2021-03-04 19:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-04 19:26 nathan at gcc dot gnu.org [this message]
2021-03-05 13:30 ` [Bug c++/99389] " cvs-commit at gcc dot gnu.org
2021-03-05 13:32 ` nathan 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-99389-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).