public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "doko at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/63751] New: ICE in tree_to_uhwi, at tree.h:3668
Date: Wed, 05 Nov 2014 16:21:00 -0000	[thread overview]
Message-ID: <bug-63751-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 63751
           Summary: ICE in tree_to_uhwi, at tree.h:3668
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: doko at gcc dot gnu.org

fails on the 4.9 branch, works on the trunk

$ cat tst.c
/* testatomic.c */
#include <stdatomic.h>
#include <stdbool.h>

struct myrcu_pointer
{
    _Atomic(void *) p;
};

bool
myrcu_compare_exchange__(struct myrcu_pointer *pointer, const void *exp,
                         void *value, memory_order order_succ,
                         memory_order order_fail)
{
    return atomic_compare_exchange_weak_explicit(&pointer->p, (void *) exp,
                                                 value, order_succ,
                                                 order_fail);
}

$ gcc -c tst.c
tst.c: In function 'myrcu_compare_exchange__':
tst.c:15:5: internal compiler error: in tree_to_uhwi, at tree.h:3668
     return atomic_compare_exchange_weak_explicit(&pointer->p, (void *) exp,
     ^
Please submit a full bug report,
with preprocessed source if appropriate.

$ /usr/lib/gcc-snapshot/bin/gcc -c tst.c
In file included from tst.c:2:0:
tst.c: In function 'myrcu_compare_exchange__':
tst.c:15:12: error: size mismatch in argument 2 of '__atomic_compare_exchange'
     return atomic_compare_exchange_weak_explicit(&pointer->p, (void *) exp,
            ^


             reply	other threads:[~2014-11-05 16:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-05 16:21 doko at gcc dot gnu.org [this message]
2014-11-05 16:40 ` [Bug c/63751] " mpolacek at gcc dot gnu.org
2015-01-20 10:39 ` mpolacek at gcc dot gnu.org
2015-01-20 14:20 ` mpolacek 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-63751-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).