diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-11-18 11:06:01 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-11-18 11:06:01 +0000 |
commit | f56f1dfecc04078dd76121cf06dae4024372f329 (patch) | |
tree | c80e1e1e4f019f69b146fc9832730bcfdc2294f3 /include | |
parent | 74e1ee922a4b6ca17b624212bb80e2606faf2e3c (diff) | |
download | external_llvm-f56f1dfecc04078dd76121cf06dae4024372f329.zip external_llvm-f56f1dfecc04078dd76121cf06dae4024372f329.tar.gz external_llvm-f56f1dfecc04078dd76121cf06dae4024372f329.tar.bz2 |
Fix forgotten member initialization detected by MSan bootstrap bot
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195003 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/DebugInfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/DebugInfo.h b/include/llvm/DebugInfo.h index 91bbc2b..12cd40f 100644 --- a/include/llvm/DebugInfo.h +++ b/include/llvm/DebugInfo.h @@ -761,6 +761,8 @@ DITypeIdentifierMap generateDITypeIdentifierMap(const NamedMDNode *CU_Nodes); /// used by the CUs. class DebugInfoFinder { public: + DebugInfoFinder() : TypeMapInitialized(false) {} + /// processModule - Process entire module and collect debug info /// anchors. void processModule(const Module &M); |