Ok, same problem.  As I said earlier, my ability to look at this is a
bit limited.  Ok, one more attempt.  In RexxLocalVariables::live(),
put the for loop in that routine inside of the conditional

if (locals != NULL)
{
    for (entry = locals...
       ...
}

On Fri, Feb 11, 2011 at 8:54 AM, Rony G. Flatscher
<rony.flatsc...@wu-wien.ac.at> wrote:
> On 11.02.2011 14:40, Rick McGuire wrote:
>
> Ah, right.  The stack member is not an object reference.  Make the
> change for just the local variables member, which is the one that is
> causing the problem.
>
>
> Doing:
>
>    /* the stack and the local variables handle their own marking. */
>     this->stack.live(liveMark);
>
> /*
>     this->settings.local_
> variables.live(liveMark);
> */
> if (this->settings.local_variables != OREF_NULL)
> {
>     this->settings.local_variables.live(liveMark);
> }
>
>
> yields the compile error:
>
> ./interpreter/execution/RexxActivation.cpp: In member function ‘virtual void
> RexxActivation::live(size_t)’:
> ./interpreter/execution/RexxActivation.cpp:932: error: no match for
> ‘operator!=’ in
> ‘((RexxActivation*)this)->RexxActivation::settings.ActivationSettings::local_variables
> != 0’
> make: *** [librexx_la-RexxActivation.lo] Error 1
>
>
> ---rony
>
>
>
>
>
>
>
> ------------------------------------------------------------------------------
> The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
> Pinpoint memory and threading errors before they happen.
> Find and fix more than 250 security defects in the development cycle.
> Locate bottlenecks in serial and parallel code that limit performance.
> http://p.sf.net/sfu/intel-dev2devfeb
> _______________________________________________
> Oorexx-devel mailing list
> Oorexx-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>
>

------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to