Skip to content

Commit cca0d6a

Browse files
committed
fmt
Created using spr 1.3.4
1 parent 76829f2 commit cca0d6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2444,13 +2444,13 @@ bool AsmPrinter::doFinalization(Module &M) {
24442444
// we can conditionalize accesses based on whether or not it is nullptr.
24452445
MF = nullptr;
24462446

2447-
std::vector<GlobalVariable*> GlobalsToTag;
2447+
std::vector<GlobalVariable *> GlobalsToTag;
24482448
for (GlobalVariable &G : M.globals()) {
24492449
if (G.isDeclaration() || !G.isTagged())
24502450
continue;
24512451
GlobalsToTag.push_back(&G);
24522452
}
2453-
for (GlobalVariable* G : GlobalsToTag)
2453+
for (GlobalVariable *G : GlobalsToTag)
24542454
tagGlobalDefinition(M, G);
24552455

24562456
// Gather all GOT equivalent globals in the module. We really need two

0 commit comments

Comments
 (0)