[Lldb-commits] [lldb] r245695 - Fix type of dw_form_t in dwarf.h
Tamas Berghammer via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 21 05:14:48 PDT 2015
Author: tberghammer
Date: Fri Aug 21 07:14:47 2015
New Revision: 245695
URL: http://llvm.org/viewvc/llvm-project?rev=245695&view=rev
Log:
Fix type of dw_form_t in dwarf.h
Modified:
lldb/trunk/include/lldb/Core/dwarf.h
Modified: lldb/trunk/include/lldb/Core/dwarf.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/dwarf.h?rev=245695&r1=245694&r2=245695&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/dwarf.h (original)
+++ lldb/trunk/include/lldb/Core/dwarf.h Fri Aug 21 07:14:47 2015
@@ -20,7 +20,7 @@ using namespace llvm::dwarf;
typedef uint32_t dw_uleb128_t;
typedef int32_t dw_sleb128_t;
typedef uint16_t dw_attr_t;
-typedef uint8_t dw_form_t;
+typedef uint16_t dw_form_t;
typedef uint16_t dw_tag_t;
typedef uint64_t dw_addr_t; // Dwarf address define that must be big enough for any addresses in the compile units that get parsed
More information about the lldb-commits
mailing list