Skip to content

Commit c9a7989

Browse files
committed
fix format
1 parent 0cda349 commit c9a7989

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mlir/include/mlir/Target/LLVMIR/ModuleTranslation.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,8 @@ class ModuleTranslation {
149149
void mapBlockAddress(BlockAddressAttr attr, llvm::BasicBlock *block) {
150150
auto result = blockAddressToLLVMMapping.try_emplace(attr, block);
151151
(void)result;
152-
assert(
153-
result.second &&
154-
"attempting to map a blockaddress attribute that is already mapped");
152+
assert(result.second &&
153+
"attempting to map a blockaddress attribute that is already mapped");
155154
}
156155

157156
/// Finds the LLVM basic block that corresponds to the given BlockAddressAttr.

0 commit comments

Comments
 (0)