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
There are two places in python/Passes.cpp where llvm::function_ref is used to store a temporary function object (lambda). It can result in undefined behavior because (as the name suggests) is a non-owning wrapper.
There are two places in
python/Passes.cpp
wherellvm::function_ref
is used to store a temporary function object (lambda). It can result in undefined behavior because (as the name suggests) is a non-owning wrapper.https://llvm.org/doxygen/STLFunctionalExtras_8h_source.html#l00035
The text was updated successfully, but these errors were encountered: