public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: Nigel Stewart <nigels@nigels.com>
To: nobody@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org,
Subject: Re: c++/1833: [2003-01-01] inlining sometimes causes incorrect behavior
Date: Thu, 03 Apr 2003 17:26:00 -0000	[thread overview]
Message-ID: <20030403172600.26033.qmail@sources.redhat.com> (raw)

The following reply was made to PR c++/1833; it has been noted by GNATS.

From: Nigel Stewart <nigels@nigels.com>
To: gcc-gnats@gcc.gnu.org,  gcc-bugs@gcc.gnu.org,  nobody@gcc.gnu.org, 
 gcc-prs@gcc.gnu.org,  peteb@sitera.com
Cc:  
Subject: Re: c++/1833: [2003-01-01] inlining sometimes causes incorrect behavior
Date: Fri, 04 Apr 2003 03:24:48 +1000

 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=1833
 
 Perhaps the bug/problem/issue I've found in gcc is related to this one
 already in the database: Problem Report 1833
 
 -------
 
 #include <iostream>
 using namespace std;
 
 float foo()
 {
 	assert(sizeof(unsigned int)==sizeof(float));
 	
 	float tmp = 0.0;
 	*((unsigned int *) &tmp) = (127<<23) | (1<<22);
 	
 	return tmp;
 }
 
 int main(int argc,char *argv[])
 {
 	cout << "Output should be 1.5: " << foo() << endl;
 }
 
 -------
 
 $ gcc -v
 Reading specs from /usr/lib/gcc-lib/i686-pc-cygwin/3.2/specs
 Configured with: /netrel/src/gcc-3.2-3/configure --enable-languages=c,c++,f77,java --enable-libgcj --enable-threads=posix --with-system-zlib --enable-nls --without-included-gettext --enable-interpreter --disable-sjlj-exceptions --disable-version-specific-runtime-libs --enable-shared --build=i686-pc-linux --host=i686-pc-cygwin --target=i686-pc-cygwin --enable-haifa --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --includedir=/nonexistent/include --libexecdir=/usr/sbin
 Thread model: posix
 gcc version 3.2 20020927 (prerelease)
 
 $ g++ test.cpp -o test && ./test
 Output should be 1.5: 1.5
 
 $ g++ -O2 test.cpp -o test && ./test
 Output should be 1.5: 0
 
 --------
 
 The following version of foo does not exhibit the same problem:
 
 float foo()
 {
 	assert(sizeof(unsigned int)==sizeof(float));
 
 	unsigned int tmp = (127<<23) | (1<<22);
 	return *((float *) &tmp);
 }
 
 Regards,
 
 Nigel Stewart
 nigels@nigels.com
 


             reply	other threads:[~2003-04-03 17:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-04-03 17:26 Nigel Stewart [this message]
2003-05-08 23:26 Giovanni Bajo

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=20030403172600.26033.qmail@sources.redhat.com \
    --to=nigels@nigels.com \
    --cc=gcc-prs@gcc.gnu.org \
    --cc=nobody@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).