*Is stack allocated memory zero initiallized > #14972
-
NativeInterop.NativePtr.stackalloc |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It just emits
So, in other words it depends whether method has F# doesn't skip locals init by default iirc. |
Beta Was this translation helpful? Give feedback.
It just emits
localloc
instruction, and here's what spec says:So, in other words it depends whether method has
localsinit
.F# doesn't skip locals init by default iirc.