summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2019-11-07 12:46:26 -0800
committerVedant Kumar <vsk@apple.com>2019-11-07 12:46:26 -0800
commitb95bb0847a1ea366dda69901c24415e0d00a9527 (patch)
tree90ec63337e5a1f2f2a272444ec95667e541049b4 /clang/lib/CodeGen/CodeGenModule.h
parentc62a9f180c26e2fed012531caa581f0d736bfed9 (diff)
downloadbcm5719-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.h8
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;
OpenPOWER on IntegriCloud