Hello,
allocatable scalars have several issues. This patch fixes the some of
them. (For more issues, see PR.)
Especially the following now works:
* Passing allocatable scalars as argument. The problem before was that
the allocatable scalar was passed by value and not by reference.
* Auto-deallocation of allocatable actual arguments when passing them to
allocatable INTENT(OUT) dummies.
* Going out of scope does no longer nullify the variable; this is not
needed as the variable cannot be accessed. (missed optimization)
Build and regtested on x86-64-linux.
OK for the trunk?