public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "tschwinge at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/63248] New: Crash when OpenMP target's array section handling is used with templates
Date: Fri, 12 Sep 2014 17:36:00 -0000	[thread overview]
Message-ID: <bug-63248-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 63248
           Summary: Crash when OpenMP target's array section handling is
                    used with templates
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Keywords: openmp
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: tschwinge at gcc dot gnu.org
                CC: jakub at gcc dot gnu.org

Consider:

    template <typename T>
    void f(T A, T B)
    {
      extern int *v;
      T a = 2;
      T b = 4;

    #pragma omp target map(to: v[a:b])
      v[a] = 0;

    #pragma omp target map(to: v[A:B])
      v[a] = 0;
    }

    void g()
    {
      f(1, 5);
    }

GCC doesn't like that template usage:

    ../../openacc/T.C: In function 'void f(T, T)':
    ../../openacc/T.C:8:35: internal compiler error: Segmentation fault
    0xc1833f crash_signal
        ../../source/gcc/toplev.c:339
    0x697f0d tree_class_check
        ../../source/gcc/tree.h:2851
    0x697f0d cp_omp_mappable_type(tree_node*)
        ../../source/gcc/cp/decl2.c:1393
    0x764777 finish_omp_clauses(tree_node*)
        ../../source/gcc/cp/semantics.c:5671
    0x6d3d39 cp_parser_omp_all_clauses
        ../../source/gcc/cp/parser.c:28680
    0x6c6265 cp_parser_omp_target
        ../../source/gcc/cp/parser.c:30649
    [...]

Discussion in
<http://news.gmane.org/find-root.php?message_id=%3C87zje7rdho.fsf%40schwinge.name%3E>.


             reply	other threads:[~2014-09-12 17:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-12 17:36 tschwinge at gcc dot gnu.org [this message]
2014-09-18 16:44 ` [Bug c++/63248] " jakub at gcc dot gnu.org
2014-09-18 16:46 ` jakub at gcc dot gnu.org
2014-09-18 17:00 ` jakub 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-63248-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).