From 009d2fe56044177f546012c367a2a558a0fe8663 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Mon, 30 Mar 2009 15:05:39 +0200 Subject: [PATCH] dwarflint: Change one error to message --- src/dwarflint.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/dwarflint.c b/src/dwarflint.c index 9cc378478..07e30bc75 100644 --- a/src/dwarflint.c +++ b/src/dwarflint.c @@ -4222,8 +4222,9 @@ check_location_expression (struct read_ctx *parent_ctx, || opcode == DW_OP_deref_size || opcode == DW_OP_plus_uconst) && (value1 > (uint64_t)(uint32_t)-1)) - wr_error (&where, ": %s with operand %#" PRIx64 " on 32-bit machine.\n", - dwarf_locexpr_opcode_string (opcode), value1); + wr_message (mc_loc | mc_acc_bloat | mc_impact_3, &where, + ": %s with operand %#" PRIx64 " on 32-bit machine.\n", + dwarf_locexpr_opcode_string (opcode), value1); }; } -- 2.47.3