From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5072 invoked by alias); 15 Mar 2007 01:45:14 -0000 Received: (qmail 4806 invoked by uid 48); 15 Mar 2007 01:45:01 -0000 Date: Thu, 15 Mar 2007 01:45:00 -0000 Subject: [Bug c++/31179] New: strange behaviour of floor rounding X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "hobiger at nict dot go dot jp" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2007-03/txt/msg01350.txt.bz2 This following small program will show the problem # report.cpp #include #include int main(int argc, char* argv[]) { double A=140.70; double x=floor((A*100)); std::cout << "Testing: A = " << A << " --> A*100 = " << A*100 << " but floor(A*100) = " << x << "\n"; double B=140.60; double y=floor((B*100)); std::cout << "Testing: B = " << B << " --> B*100 = " << B*100 << " but floor(B*100) = " << y << "\n"; } The program was compiled simply by "g++ report.cpp -o report." For all machines available here I obtained Testing: A = 140.7 --> A*100 = 14070 but floor(A*100) = 14069 Testing: B = 140.6 --> B*100 = 14060 but floor(B*100) = 14060 The latter result is as expected but for A=128.7,129.7,130.7....163.7 floor rounding gives wrong results. This bug has been verified on several architectures (PIII,P3, WinXP - Cygwin) and under several versions of gcc/g++ (4.1.1 - on FC6, 4.0.2 - on RH, 3.4.6 -on RH) Any ideas where this comes frome ??? -- Summary: strange behaviour of floor rounding Product: gcc Version: unknown Status: UNCONFIRMED Severity: critical Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: hobiger at nict dot go dot jp http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31179