Author: dgilmore Date: 2011-10-09 01:17:57 -0400 (Sun, 09 Oct 2011) New Revision: 3753
Modified: trunk/osprey/be/opt/opt_vn_expr.cxx Log: Fixed to bug 771. (long double)-0.0 should not have the same value number of (long double)0.0. Approved by Jian-Xin. Modified: trunk/osprey/be/opt/opt_vn_expr.cxx =================================================================== --- trunk/osprey/be/opt/opt_vn_expr.cxx 2011-10-08 13:26:04 UTC (rev 3752) +++ trunk/osprey/be/opt/opt_vn_expr.cxx 2011-10-09 05:17:57 UTC (rev 3753) @@ -651,6 +651,9 @@ else if (this_mty == MTYPE_F4 && TCON_R4(other_tcon) == 0 && TCON_R4(_tcon) == 0) truth = TCON_word0(other_tcon) == TCON_word0(_tcon); + else if (this_mty == MTYPE_F10 && + TCON_R10(other_tcon) == 0 && TCON_R10(_tcon) == 0) + truth = TCON_v2(other_tcon) == TCON_v2(_tcon); #endif else { BOOL folded; ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2dcopy2 _______________________________________________ Open64-devel mailing list Open64-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/open64-devel