We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c8c1c commit 6c33a53Copy full SHA for 6c33a53
flang/docs/Extensions.md
@@ -160,7 +160,10 @@ end
160
* `<>` as synonym for `.NE.` and `/=`
161
* `$` and `@` as legal characters in names
162
* Initialization in type declaration statements using `/values/`
163
-* Saved variables without explicit or default initializers are zero initialized.
+* Saved variables without explicit or default initializers are zero initialized,
164
+ except for implicitly saved scalar variables from the main program that are
165
+ kept on the stack by flang and are not zero initialized. It is not advised to
166
+ rely on this extension in new code.
167
* In a saved entity of a type with a default initializer, components without default
168
values are zero initialized.
169
* Kind specification with `*`, e.g. `REAL*4`
0 commit comments