mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix header_length's type to unsigned long
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a89f229d6e
commit
5b1bbc9af0
1 changed files with 2 additions and 3 deletions
|
@ -280,12 +280,11 @@ parse_debug_line_cu(int num_traces, void **traces, char **debug_line,
|
|||
obj_info_t *obj, line_info_t *lines, int offset)
|
||||
{
|
||||
char *p, *cu_end, *cu_start, *include_directories, *filenames;
|
||||
unsigned long unit_length;
|
||||
unsigned long unit_length, header_length;
|
||||
unsigned short dwarf_version;
|
||||
ptrdiff_t dwarf_word = 4;
|
||||
int default_is_stmt, line_base;
|
||||
unsigned int header_length, minimum_instruction_length, line_range,
|
||||
opcode_base;
|
||||
unsigned int minimum_instruction_length, line_range, opcode_base;
|
||||
/* unsigned char *standard_opcode_lengths; */
|
||||
|
||||
/* The registers. */
|
||||
|
|
Loading…
Add table
Reference in a new issue