diff options
author | Vedant Kumar <vsk@apple.com> | 2019-11-07 12:46:26 -0800 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2019-11-07 12:46:26 -0800 |
commit | b95bb0847a1ea366dda69901c24415e0d00a9527 (patch) | |
tree | 90ec63337e5a1f2f2a272444ec95667e541049b4 /clang/lib/CodeGen/CodeGenModule.h | |
parent | c62a9f180c26e2fed012531caa581f0d736bfed9 (diff) | |
download | bcm5719-llvm-b95bb0847a1ea366dda69901c24415e0d00a9527.tar.gz bcm5719-llvm-b95bb0847a1ea366dda69901c24415e0d00a9527.zip |
[CodeGenModule] Group blocks runtime globals together, NFC
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index f5014c05b06..33d419a0290 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -523,18 +523,18 @@ private: int GlobalUniqueCount; } Block; + GlobalDecl initializedGlobalDecl; + + /// @} + /// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>) llvm::Function *LifetimeStartFn = nullptr; /// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>) llvm::Function *LifetimeEndFn = nullptr; - GlobalDecl initializedGlobalDecl; - std::unique_ptr<SanitizerMetadata> SanitizerMD; - /// @} - llvm::MapVector<const Decl *, bool> DeferredEmptyCoverageMappingDecls; std::unique_ptr<CoverageMappingModuleGen> CoverageMapping; |