public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55267] New: double operation giving different results depending on context and optimization level
@ 2012-11-10 17:47 jkuittinen293482 at gmail dot com
  2012-11-10 17:49 ` [Bug c++/55267] " pinskia at gcc dot gnu.org
  2012-11-12 14:53 ` paolo.carlini at oracle dot com
  0 siblings, 2 replies; 3+ messages in thread
From: jkuittinen293482 at gmail dot com @ 2012-11-10 17:47 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55267
           Summary: double operation giving different results depending on
                    context and optimization level
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: jkuittinen293482@gmail.com


/*
 * the following code outputs ":o" on 4.7.2 when compiled with -O0
 * and ":)" when compiled with -O1
 *
 */

#include <iostream>

class Plap
{
public:
    double value;

    Plap(int a, int b)
    {
        value = (double)a / (double)b;
    }
};


int main()
{
    int i = 1;
    int j = 3;

    Plap plap(i, j);

    if (plap.value != ((double)i / (double)j))
        std::cout << ":o" << std::endl;
    else
        std::cout << ":)" << std::endl;


    return 0;
}


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-11-12 14:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-10 17:47 [Bug c++/55267] New: double operation giving different results depending on context and optimization level jkuittinen293482 at gmail dot com
2012-11-10 17:49 ` [Bug c++/55267] " pinskia at gcc dot gnu.org
2012-11-12 14:53 ` paolo.carlini at oracle dot com

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).