[llvm] [llubi] Add basic support for icmp, terminators and function calls (PR #181393)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 13 12:53:33 PST 2026
================
@@ -116,7 +118,7 @@ static AnyValue mulNoWrap(const APInt &LHS, const APInt &RHS, bool HasNSW,
/// visit* methods return true on success, false on error.
/// Unlike the Context class that manages the global state,
/// InstExecutor only maintains the state for call frames.
-class InstExecutor : public InstVisitor<InstExecutor, bool> {
+class InstExecutor : public InstVisitor<InstExecutor, void> {
----------------
nikic wrote:
Can this change be landed separately? This causes a lot of callbacks to be fully reformatted.
https://github.com/llvm/llvm-project/pull/181393
More information about the llvm-commits
mailing list