From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luc Van Oostenryck Subject: [PATCH 2/9] add a .warned field to struct instruction Date: Wed, 31 May 2017 05:22:00 +0200 Message-ID: <20170531032207.95830-3-luc.vanoostenryck@gmail.com> References: <20170531032207.95830-1-luc.vanoostenryck@gmail.com> Return-path: Received: from mail-wm0-f68.google.com ([74.125.82.68]:34716 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751088AbdEaDWT (ORCPT ); Tue, 30 May 2017 23:22:19 -0400 Received: by mail-wm0-f68.google.com with SMTP id d127so1025678wmf.1 for ; Tue, 30 May 2017 20:22:18 -0700 (PDT) In-Reply-To: <20170531032207.95830-1-luc.vanoostenryck@gmail.com> Sender: linux-sparse-owner@vger.kernel.org List-Id: linux-sparse@vger.kernel.org To: linux-sparse@vger.kernel.org Cc: Luc Van Oostenryck Signed-off-by: Luc Van Oostenryck --- linearize.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/linearize.h b/linearize.h index c704b87b4..2b6cb0c86 100644 --- a/linearize.h +++ b/linearize.h @@ -75,8 +75,9 @@ struct asm_rules { DECLARE_ALLOCATOR(asm_rules); struct instruction { - unsigned opcode:8, - size:24; + unsigned opcode:7; + unsigned warned:1; + unsigned size:24; struct basic_block *bb; struct position pos; struct symbol *type; -- 2.13.0