dbghelp: Fix misleading indentation warning.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jacek Caban 2020-03-29 21:03:47 +02:00 committed by Alexandre Julliard
parent 9c2cedabc7
commit 94ad6bd2e6
1 changed files with 4 additions and 1 deletions

View File

@ -755,7 +755,10 @@ compute_location(const struct module *module, dwarf2_traverse_context_t* ctx, st
case DW_OP_eq: stack[stk-1] = (stack[stk-1] == stack[stk]); stk--; break;
case DW_OP_ne: stack[stk-1] = (stack[stk-1] != stack[stk]); stk--; break;
case DW_OP_skip: tmp = dwarf2_parse_u2(ctx); ctx->data += tmp; break;
case DW_OP_bra: tmp = dwarf2_parse_u2(ctx); if (!stack[stk--]) ctx->data += tmp; break;
case DW_OP_bra:
tmp = dwarf2_parse_u2(ctx);
if (!stack[stk--]) ctx->data += tmp;
break;
case DW_OP_regx:
tmp = dwarf2_leb128_as_unsigned(ctx);
if (!piece_found)