diff options
author | Vedant Kumar <vsk@apple.com> | 2016-07-11 22:57:44 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-07-11 22:57:44 +0000 |
commit | c468bb8b290e73b45836d87d7de32068e8d2ae40 (patch) | |
tree | 2f97daacdb8078e39532a5b1a0ec653c59fe5b6c /clang/lib/CodeGen/CodeGenPGO.h | |
parent | aacb80853a46bd544fa76a945667302be1de706c (diff) | |
download | bcm5719-llvm-c468bb8b290e73b45836d87d7de32068e8d2ae40.tar.gz bcm5719-llvm-c468bb8b290e73b45836d87d7de32068e8d2ae40.zip |
[Coverage] Move logic to skip decl's into a helper (NFC)
llvm-svn: 275120
Diffstat (limited to 'clang/lib/CodeGen/CodeGenPGO.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenPGO.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenPGO.h b/clang/lib/CodeGen/CodeGenPGO.h index ccda5759e67..d03f23535bb 100644 --- a/clang/lib/CodeGen/CodeGenPGO.h +++ b/clang/lib/CodeGen/CodeGenPGO.h @@ -103,6 +103,7 @@ private: llvm::Function *Fn); void loadRegionCounts(llvm::IndexedInstrProfReader *PGOReader, bool IsInMainFile); + bool skipRegionMappingForDecl(const Decl *D); void emitCounterRegionMapping(const Decl *D); public: |