Mathew Yeates wrote:
> So, now I'm trying set the memory location.
> (gdb) print &Tau_mask
> $6 = (PTR TO -> ( logical(kind=4) (*,*))) 0x2859630
> (gdb) set (int)0x2859630=.TRUE.
> Left operand of assignment is not an lvalue
>
> What am I doing wrong?
This is not unique to Fortran. The usual gdb syntax for this would be
set *(int *) 0x2859630= [...]