diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-11-15 11:59:47 +0100 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-11-15 12:16:44 +0100 |
commit | 41d6ad6efddadbb905bd14c53c2731b75f30cca7 (patch) | |
tree | 80d5722b1861e86826452625827bd543ada156a7 /clang/lib/CodeGen/CGDebugInfo.h | |
parent | 71327707b056c1de28fb0b2c2046740ce1e5cb0d (diff) | |
download | bcm5719-llvm-41d6ad6efddadbb905bd14c53c2731b75f30cca7.tar.gz bcm5719-llvm-41d6ad6efddadbb905bd14c53c2731b75f30cca7.zip |
Revert "[clang] Remove the DIFlagArgumentNotModified debug info flag"
This reverts commit rG1643734741d2 due to LLDB test failure.
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index 5341bfa7f35..9a097615b4b 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/lib/CodeGen/CGDebugInfo.h @@ -146,6 +146,10 @@ class CGDebugInfo { llvm::DenseMap<const char *, llvm::TrackingMDRef> DIFileCache; llvm::DenseMap<const FunctionDecl *, llvm::TrackingMDRef> SPCache; + /// Cache function definitions relevant to use for parameters mutation + /// analysis. + llvm::DenseMap<const FunctionDecl *, llvm::TrackingMDRef> SPDefCache; + llvm::DenseMap<const ParmVarDecl *, llvm::TrackingMDRef> ParamCache; /// Cache declarations relevant to DW_TAG_imported_declarations (C++ /// using declarations) that aren't covered by other more specific caches. llvm::DenseMap<const Decl *, llvm::TrackingMDRef> DeclCache; |