Hi Al,
The only scenarios where problems can (and will) pop up that I can think of right now are:

A) Jumping out of an ISR with a GOTO without eventually reaching a RETFIE or INT_RETURN or whatever is appropriate for the type of interrupt you're using.

B) Jumping out of subroutine to which you've GOSUBed without eventually reaching a RETURN.

Using GOTO within an IF/ENDIF block or a WHILE/WEND, DO/LOOP type of loop structure should be a problem - as far as I can see.

/Henrik.