Is there any way in PASM to determine whether or not two PMC's share the same memory address?
That is, for example, given the following IMC snippet: .sub _eq .param pmc arg1 .param pmc arg2 .local int retv ... ... .pcc_begin_return .return retv .pcc_end_return .end what I'd like to do is to determine whether arg1 and arg2 are the SAME pmc object (not in value, but whether or not they reside at the same location in memory). Regards, Cory