Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!usc!apple!sun-barr!ames!hc!lanl!jlg From: jlg@lanl.gov (Jim Giles) Newsgroups: comp.lang.fortran Subject: Re: Fortran 8x: pointers and optimization Message-ID: <13963@lanl.gov> Date: 27 Jun 89 23:35:02 GMT References: Distribution: usa Organization: Los Alamos National Laboratory Lines: 10 From article , by mccalpin@masig1.ocean.fsu.edu (John D. McCalpin): > [...] > On the other hand, IDENTIFY clearly has the same sort of aliasing > problems as POINTER. I am not sure about ALIAS, but I seem to recall > that it was even more limited.... ALIAS and IDENTIFY are related. IDENTIFY does not have the _same_ sort of aliasing problems as pointer. This is because POINTERs can be reassigned during a subroutine call. You can't reIDENTIFY something in a subroutine call though. See my previous posting.