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
Function pointers are used by some stdlib functions (example: max calls max_by with a function pointer of FnOnce type) and executed using the call_once function. Examples of such function pointers show that the called function is present in the items but not necessarily in the functions array in the Stable MIR JSON.
The callee name needs to be present in the functions array (a change in stable-mir-json is required)
The Call terminator needs to support determining the func from an argument (currently it only supports operandConstant)
The text was updated successfully, but these errors were encountered:
Function pointers are used by some stdlib functions (example:
max
callsmax_by
with a function pointer ofFnOnce
type) and executed using thecall_once
function. Examples of such function pointers show that the called function is present in the items but not necessarily in thefunctions
array in the Stable MIR JSON.functions
array (a change instable-mir-json
is required)Call
terminator needs to support determining thefunc
from an argument (currently it only supportsoperandConstant
)The text was updated successfully, but these errors were encountered: