mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 01:16:41 +00:00

For example, determine that the address in p below cannot alias the address of v: ``` subroutine test() real, pointer :: p real, target :: t real :: v p => t v = p end subroutine test ```