Skip to content

Commit

Permalink
clang-format-12-ify
Browse files Browse the repository at this point in the history
  • Loading branch information
newling committed Nov 22, 2023
1 parent fe1519e commit 21c3946
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/Dialect/AIE/Transforms/AIEAssignLockIDs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,8 @@ struct AIEAssignLockIDsPass : AIEAssignLockIDsBase<AIEAssignLockIDsPass> {
}
if (nextID == locksPerTile) {
auto diag = lockOp->emitOpError("not allocated a lock.");
diag.attachNote(tileOp.getLoc())
<< "because only " << locksPerTile
<< " locks available in this tile.";
diag.attachNote(tileOp.getLoc()) << "because only " << locksPerTile
<< " locks available in this tile.";
return signalPassFailure();
}
lockOp->setAttr("lockID", rewriter.getI32IntegerAttr(nextID));
Expand Down

0 comments on commit 21c3946

Please sign in to comment.