This is an archive of the discontinued LLVM Phabricator instance.

[mlir][LLVM] Fix mapping of result values of `llvm.invoke` during export
ClosedPublic

Authored by zero9178 on Jan 3 2022, 2:44 PM.

Details

Summary

The result value of a llvm.invoke operation is currently not mapped to the corresponding llvm::Value* when exporting to LLVM IR. This leads to any later operations using the result to crash as it receives a nullptr.

Diff Detail