We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cda349 commit c9a7989Copy full SHA for c9a7989
mlir/include/mlir/Target/LLVMIR/ModuleTranslation.h
@@ -149,9 +149,8 @@ class ModuleTranslation {
149
void mapBlockAddress(BlockAddressAttr attr, llvm::BasicBlock *block) {
150
auto result = blockAddressToLLVMMapping.try_emplace(attr, block);
151
(void)result;
152
- assert(
153
- result.second &&
154
- "attempting to map a blockaddress attribute that is already mapped");
+ assert(result.second &&
+ "attempting to map a blockaddress attribute that is already mapped");
155
}
156
157
/// Finds the LLVM basic block that corresponds to the given BlockAddressAttr.
0 commit comments