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 76829f2 commit cca0d6aCopy full SHA for cca0d6a
llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -2444,13 +2444,13 @@ bool AsmPrinter::doFinalization(Module &M) {
2444
// we can conditionalize accesses based on whether or not it is nullptr.
2445
MF = nullptr;
2446
2447
- std::vector<GlobalVariable*> GlobalsToTag;
+ std::vector<GlobalVariable *> GlobalsToTag;
2448
for (GlobalVariable &G : M.globals()) {
2449
if (G.isDeclaration() || !G.isTagged())
2450
continue;
2451
GlobalsToTag.push_back(&G);
2452
}
2453
- for (GlobalVariable* G : GlobalsToTag)
+ for (GlobalVariable *G : GlobalsToTag)
2454
tagGlobalDefinition(M, G);
2455
2456
// Gather all GOT equivalent globals in the module. We really need two
0 commit comments