Skip to content

Commit d31c0e0

Browse files
committed
pacify formatter check
1 parent a4e45e8 commit d31c0e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/CodeGen/CodeGenModule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5399,7 +5399,7 @@ void CodeGenModule::EmitExternalDeclaration(const DeclaratorDecl *D) {
53995399
llvm::Constant *Addr = GetAddrOfGlobal(GD)->stripPointerCasts();
54005400
if (const auto *VD = dyn_cast<VarDecl>(D)) {
54015401
DI->EmitExternalVariable(
5402-
cast<llvm::GlobalVariable>(Addr->stripPointerCasts()), VD);
5402+
cast<llvm::GlobalVariable>(Addr->stripPointerCasts()), VD);
54035403
} else if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
54045404
llvm::Function *Fn = cast<llvm::Function>(Addr);
54055405
if (!Fn->getSubprogram())

0 commit comments

Comments
 (0)