Skip to content

Commit b95bb08

Browse files
committed
[CodeGenModule] Group blocks runtime globals together, NFC
1 parent c62a9f1 commit b95bb08

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/CodeGen/CodeGenModule.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -523,18 +523,18 @@ class CodeGenModule : public CodeGenTypeCache {
523523
int GlobalUniqueCount;
524524
} Block;
525525

526+
GlobalDecl initializedGlobalDecl;
527+
528+
/// @}
529+
526530
/// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>)
527531
llvm::Function *LifetimeStartFn = nullptr;
528532

529533
/// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>)
530534
llvm::Function *LifetimeEndFn = nullptr;
531535

532-
GlobalDecl initializedGlobalDecl;
533-
534536
std::unique_ptr<SanitizerMetadata> SanitizerMD;
535537

536-
/// @}
537-
538538
llvm::MapVector<const Decl *, bool> DeferredEmptyCoverageMappingDecls;
539539

540540
std::unique_ptr<CoverageMappingModuleGen> CoverageMapping;

0 commit comments

Comments
 (0)