public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "debian-gcc at lists dot debian dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/42553]  New: wrong code with -O1
Date: Wed, 30 Dec 2009 12:57:00 -0000	[thread overview]
Message-ID: <bug-42553-5724@http.gcc.gnu.org/bugzilla/> (raw)

current trunk/branches on x86_64-linux-gnu. return values with different
compilers and different optimizations:

         -O0  -O1  -O2  -O3
gcc-4.1   0    2    2    2
gcc-4.3   0    2    2    2
gcc-4.4   2    0    0    0
gcc-4.5   0    1    0    0

  Matthias

#include <stdbool.h>
#include <stdio.h>

static bool atomic_test_and_reset_bit(unsigned long *v,unsigned long bit) {
  bool res;

  __asm__ __volatile__( "btr %2,%1\n"
                        "adc $0,%0\n"
                        :"=r"(res), "=m"(*v)
                        :"r"(bit), "r"(0)) ;
  return res ? 1 : 0;
}

int main(void)
{
  unsigned long flags = 0;
  int j;

  j = atomic_test_and_reset_bit(&flags, 2);

  printf("%d\n", j);

  return 0;
}


-- 
           Summary: wrong code with -O1
           Product: gcc
           Version: 4.4.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: debian-gcc at lists dot debian dot org
GCC target triplet: x86_64-linux-gnu


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


             reply	other threads:[~2009-12-30 12:57 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-30 12:57 debian-gcc at lists dot debian dot org [this message]
2009-12-30 13:14 ` Andrew Pinski
2009-12-30 13:15 ` [Bug target/42553] " pinskia at gmail dot com
2009-12-30 14:33 ` pinskia at gcc dot gnu dot org
2010-01-04 16:07 ` 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=bug-42553-5724@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).