[FIRRTL] LowerClasses: Fix ignored LogicalResult.

This commit is contained in:
Will Dietz 2024-06-21 08:55:40 -05:00
parent 45736b3f48
commit d342694c7e
1 changed files with 2 additions and 1 deletions

View File

@ -308,7 +308,8 @@ PathTracker::run(CircuitOp circuit, InstanceGraph &instanceGraph,
owningModules);
if (failed(tracker.runOnModule()))
return failure();
tracker.updatePathInfoTable(pathInfoTable, cache);
if (failed(tracker.updatePathInfoTable(pathInfoTable, cache)))
return failure();
}
return success();