public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "bangerth at dealii dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/18084] [3.4 only]setfill coupled with inline function: incorrect results on Linux x86
Date: Wed, 20 Oct 2004 18:00:00 -0000	[thread overview]
Message-ID: <20041020180009.6115.qmail@sourceware.org> (raw)
In-Reply-To: <20041020163657.18084.knutejunk@austin.rr.com>


------- Additional Comments From bangerth at dealii dot org  2004-10-20 18:00 -------
Here's something slightly smaller: 
------------------ 
#include <inttypes.h> 
#include <iostream> 
#include <iomanip> 
 
uint64_t mask1, mask2; 
 
uint64_t calc() { 
  return mask1 & mask2; 
} 
 
int main() 
{ 
  mask1 = 0x00000000FFFFFFFFull; 
  mask2 = 0x000000000000FFFFull; 
  uint64_t value = calc(); 
 
  std::cout << std::setfill('0'); 
 
  if(value != calc()) 
    abort (); 
} 
------------------------------ 
g/x> /home/bangerth/bin/gcc-3.4.3-pre/bin/c++ -O3 x.cc ; ./a.out  
Aborted 
 
I'll keep working on reducing this. 
 
W. 

-- 


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


  parent reply	other threads:[~2004-10-20 18:00 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-10-20 16:37 [Bug c++/18084] New: setfill " knutejunk at austin dot rr dot com
2004-10-20 17:09 ` [Bug rtl-optimization/18084] [3.4 only]setfill " pinskia at gcc dot gnu dot org
2004-10-20 18:00 ` bangerth at dealii dot org [this message]
2004-10-25 14:24 ` bangerth at dealii dot org
2004-10-25 14:57 ` [Bug rtl-optimization/18084] [3.4 regression]setfill " pinskia at gcc dot gnu dot org
2004-10-30 22:58 ` cvs-commit at gcc dot gnu dot org
2004-10-30 23:06 ` pinskia at gcc dot gnu dot org
2004-10-31  1:57 ` cvs-commit at gcc dot gnu dot 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=20041020180009.6115.qmail@sourceware.org \
    --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).