Skip to content

Commit d11e14e

Browse files
committed
[Clang] Fix format. NFC.
1 parent f5297c7 commit d11e14e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/CodeGen/CGExpr.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3617,9 +3617,11 @@ static void emitCheckHandlerCall(CodeGenFunction &CGF,
36173617
.addAttribute(llvm::Attribute::NoUnwind);
36183618
}
36193619
B.addUWTableAttr(llvm::UWTableKind::Default);
3620-
// Add more precise attributes to recoverable ubsan handlers for better optimizations.
3620+
// Add more precise attributes to recoverable ubsan handlers for better
3621+
// optimizations.
36213622
if (CGF.CGM.getCodeGenOpts().OptimizationLevel > 0 && MayReturn) {
3622-
B.addMemoryAttr(llvm::MemoryEffects::argMemOnly(llvm::ModRefInfo::Ref) | llvm::MemoryEffects::inaccessibleMemOnly());
3623+
B.addMemoryAttr(llvm::MemoryEffects::argMemOnly(llvm::ModRefInfo::Ref) |
3624+
llvm::MemoryEffects::inaccessibleMemOnly());
36233625
// If the handler does not return, we must hit a undefined behavior.
36243626
B.addAttribute(llvm::Attribute::WillReturn);
36253627
}

0 commit comments

Comments
 (0)