From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759158Ab2DYLyk (ORCPT ); Wed, 25 Apr 2012 07:54:40 -0400 Received: from mail-lb0-f174.google.com ([209.85.217.174]:60224 "EHLO mail-lb0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759140Ab2DYLyi (ORCPT ); Wed, 25 Apr 2012 07:54:38 -0400 Message-ID: <4F97E5F7.9030305@openvz.org> Date: Wed, 25 Apr 2012 15:54:31 +0400 From: Konstantin Khlebnikov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.2) Gecko/20120217 Firefox/10.0.2 Iceape/2.7.2 MIME-Version: 1.0 To: Cong Wang CC: Linus Torvalds , "linux-kernel@vger.kernel.org" , "linux-arch@vger.kernel.org" , Andrew Morton Subject: Re: [PATCH 1/4] compiler.h: introduce unused_expression() macro References: <20120425112623.26927.43229.stgit@zurg> <4F97E550.4060208@gmail.com> In-Reply-To: <4F97E550.4060208@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Cong Wang wrote: > On 04/25/2012 07:26 PM, Konstantin Khlebnikov wrote: >> Sometimes we want to check some expressions correctness in compile-time without >> generating extra code. "(void)(e)" does not work if expression has side-effects. >> This patch introduces macro unused_expression() which helps in this situation. >> > > Interesting, I am wondering why gcc doesn't eliminate the code as we > pass either -O2 or -Os to it. It cannot do this if expression has some side-effects, for example if it contains BUG().