[llvm] r195003 - Fix forgotten member initialization detected by MSan bootstrap bot

Alexey Samsonov samsonov at google.com
Mon Nov 18 03:06:01 PST 2013


Author: samsonov
Date: Mon Nov 18 05:06:01 2013
New Revision: 195003

URL: http://llvm.org/viewvc/llvm-project?rev=195003&view=rev
Log:
Fix forgotten member initialization detected by MSan bootstrap bot

Modified:
    llvm/trunk/include/llvm/DebugInfo.h

Modified: llvm/trunk/include/llvm/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo.h?rev=195003&r1=195002&r2=195003&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/DebugInfo.h Mon Nov 18 05:06:01 2013
@@ -761,6 +761,8 @@ DITypeIdentifierMap generateDITypeIdenti
 /// used by the CUs.
 class DebugInfoFinder {
 public:
+  DebugInfoFinder() : TypeMapInitialized(false) {}
+
   /// processModule - Process entire module and collect debug info
   /// anchors.
   void processModule(const Module &M);





More information about the llvm-commits mailing list