Author: laijx
Date: 2011-04-25 03:30:50 -0400 (Mon, 25 Apr 2011)
New Revision: 3569

Modified:
   trunk/osprey/be/opt/opt_revise_ssa.cxx
Log:
Fix a compilation error caused by the previous check-in.
A wrong API in POINTS_TO is used in the previous patch, which will cause
a compilation error.



Modified: trunk/osprey/be/opt/opt_revise_ssa.cxx
===================================================================
--- trunk/osprey/be/opt/opt_revise_ssa.cxx      2011-04-25 05:32:17 UTC (rev 
3568)
+++ trunk/osprey/be/opt/opt_revise_ssa.cxx      2011-04-25 07:30:50 UTC (rev 
3569)
@@ -390,7 +390,7 @@
          _symbols_to_revise->Union1D(idx);
          AUX_STAB_ENTRY *aux = _opt_stab->Aux_stab_entry(idx);
          aux->Points_to()->Set_expr_kind(EXPR_IS_ADDR);
-         aux->Points_to()->Set_expr_kind(OFST_IS_FIXED);
+         aux->Points_to()->Set_ofst_kind(OFST_IS_FIXED);
          aux->Points_to()->Set_named();
 
          lhs->Set_scalar_aux_id(idx);
@@ -595,7 +595,7 @@
          _symbols_to_revise->Union1D(idx);
          AUX_STAB_ENTRY *aux = _opt_stab->Aux_stab_entry(idx);
          aux->Points_to()->Set_expr_kind(EXPR_IS_ADDR);
-         aux->Points_to()->Set_expr_kind(OFST_IS_FIXED);
+         aux->Points_to()->Set_ofst_kind(OFST_IS_FIXED);
          aux->Points_to()->Set_named();
 
          lhs->Set_scalar_aux_id(idx);


------------------------------------------------------------------------------
Fulfilling the Lean Software Promise
Lean software platforms are now widely adopted and the benefits have been 
demonstrated beyond question. Learn why your peers are replacing JEE 
containers with lightweight application servers - and what you can gain 
from the move. http://p.sf.net/sfu/vmware-sfemails
_______________________________________________
Open64-devel mailing list
Open64-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/open64-devel

Reply via email to