You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we can see the define of f90_mset in file runtime/flang/miscsup_com.c, which has a condition if (d) , the detail snip code as following, I think the user should make sure don't pass a NULL pointer to the runtime API f90_mset ? so this condition can be deleted according performance.
I don't believe that the routines you're referencing are user callable - you might want to first double check whether these routines are internal prior to changing the semantics to have the user validate the arguments prior to the call.
Instead of deleting the test, you might want to give consideration to expanding it to also include checking that v != NULL.
we can see the define of f90_mset in file runtime/flang/miscsup_com.c, which has a condition
if (d)
, the detail snip code as following, I think the user should make sure don't pass a NULL pointer to the runtime API f90_mset ? so this condition can be deleted according performance.The text was updated successfully, but these errors were encountered: