Skip to content

Commit d24c7bb

Browse files
committed
format
1 parent 66af964 commit d24c7bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/Targets/AIETargetXAIEV2.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ static mlir::LogicalResult generateDMAConfig(OpType memOp, raw_ostream &output,
147147
// Ensure BD length in bytes fits in the u32 `Len` argument of the libxaie
148148
// DMA APIs (XAie_DmaSetAddrLen / XAie_DmaSetMultiDimAddr).
149149
if (foundBd && lenA > std::numeric_limits<uint32_t>::max()) {
150-
return memOp.emitOpError("buffer descriptor length in bytes (") << lenA << ") does not fit in 32 bits";
150+
return memOp.emitOpError("buffer descriptor length in bytes (")
151+
<< lenA << ") does not fit in 32 bits";
151152
}
152153

153154
int acqValue = 0, relValue = 0;

0 commit comments

Comments
 (0)