Author: yug
Date: 2011-12-02 08:10:32 -0500 (Fri, 02 Dec 2011)
New Revision: 3837
Modified:
trunk/osprey/be/opt/opt_htable.cxx
Log:
fix bug362/785.
typo of "||", it should be "&&"
the Bit_size == 0 is essential for istorefolds
Code Review: Sun Chan
Modified: trunk/osprey/be/opt/opt_htable.cxx
===================================================================
--- trunk/osprey/be/opt/opt_htable.cxx 2011-12-02 12:45:35 UTC (rev 3836)
+++ trunk/osprey/be/opt/opt_htable.cxx 2011-12-02 13:10:32 UTC (rev 3837)
@@ -4176,7 +4176,8 @@
opt_stab->Aux_stab_entry(vaux)->Byte_size() * 8 ==
MTYPE_size_min(_desc) &&
(opr == OPR_ISTORE &&
- (opt_stab->Aux_stab_entry(vaux)->Bit_size() == 0 ||
+ // bug362 open64.net, Bit_size == 0 is essential for istorefolds
+ (opt_stab->Aux_stab_entry(vaux)->Bit_size() == 0 &&
opt_stab->Aux_stab_entry(vaux)->Field_id() ==
WN_field_id(Wn())) ||
opr == OPR_ISTBITS &&
opt_stab->Aux_stab_entry(vaux)->Bit_ofst() ==
WN_bit_offset(Wn()) &&
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, 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-novd2d
_______________________________________________
Open64-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/open64-devel