[Lldb-commits] [lldb] r179910 - Make sure file rangle integers are large enough for very large core files.

Greg Clayton gclayton at apple.com
Fri Apr 19 17:24:34 PDT 2013


Author: gclayton
Date: Fri Apr 19 19:24:34 2013
New Revision: 179910

URL: http://llvm.org/viewvc/llvm-project?rev=179910&view=rev
Log:
Make sure file rangle integers are large enough for very large core files.


Modified:
    lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.h

Modified: lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.h?rev=179910&r1=179909&r2=179910&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.h (original)
+++ lldb/trunk/source/Plugins/Process/mach-core/ProcessMachCore.h Fri Apr 19 19:24:34 2013
@@ -129,7 +129,7 @@ private:
     //------------------------------------------------------------------
     // For ProcessMachCore only
     //------------------------------------------------------------------
-    typedef lldb_private::Range<uint32_t, uint32_t> FileRange;
+    typedef lldb_private::Range<lldb::addr_t, lldb::addr_t> FileRange;
     typedef lldb_private::RangeDataVector<lldb::addr_t, lldb::addr_t, FileRange> VMRangeToFileOffset;
 
     VMRangeToFileOffset m_core_aranges;





More information about the lldb-commits mailing list