diff options
author | Michal Ludvig <mludvig@suse.cz> | 2002-10-24 01:37:40 +0000 |
---|---|---|
committer | Michal Ludvig <mludvig@suse.cz> | 2002-10-24 01:37:40 +0000 |
commit | 9ce56bf0ed5d5c3c37f8abddbf8c44658c4db6fb (patch) | |
tree | 85b08de2b85ce1f10542c530420eb9235f1329d5 /gdb/dwarf2cfi.c | |
parent | abf442ea987b792d109e953f42650f570d8b8a77 (diff) | |
download | gdb-9ce56bf0ed5d5c3c37f8abddbf8c44658c4db6fb.tar.gz |
Reindented.
Diffstat (limited to 'gdb/dwarf2cfi.c')
-rw-r--r-- | gdb/dwarf2cfi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/dwarf2cfi.c b/gdb/dwarf2cfi.c index 41e645b8866..ddb42ab65f5 100644 --- a/gdb/dwarf2cfi.c +++ b/gdb/dwarf2cfi.c @@ -814,13 +814,13 @@ frame_state_for (struct context *context, struct frame_state *fs) gdb_assert (fde->cie_ptr != NULL); cie = fde->cie_ptr; - + fs->code_align = cie->code_align; fs->data_align = cie->data_align; fs->retaddr_column = cie->ra; fs->addr_encoding = cie->addr_encoding; fs->objfile = cie->objfile; - + execute_cfa_program (cie->objfile, cie->data, cie->data + cie->data_length, context, fs); execute_cfa_program (cie->objfile, fde->data, @@ -1094,7 +1094,7 @@ execute_stack_op (struct objfile *objfile, case DW_OP_deref_size: { int len = *op_ptr++; - if (len != 1 && len != 2 && len != 4 && len !=8) + if (len != 1 && len != 2 && len != 4 && len != 8) internal_error (__FILE__, __LINE__, "execute_stack_op error"); result = read_memory_unsigned_integer (result, len); |