From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27685 invoked by alias); 29 Jun 2003 14:51:50 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 27676 invoked by uid 48); 29 Jun 2003 14:51:49 -0000 Date: Sun, 29 Jun 2003 14:51:00 -0000 Message-ID: <20030629145149.27675.qmail@sources.redhat.com> From: "pinskia at physics dot uc dot edu" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030629143256.11373.marcus@jet.franken.de> References: <20030629143256.11373.marcus@jet.franken.de> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug optimization/11373] asm generated lhs expressions are discarded X-Bugzilla-Reason: CC X-SW-Source: 2003-06/txt/msg03097.txt.bz2 List-Id: PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11373 ------- Additional Comments From pinskia at physics dot uc dot edu 2003-06-29 14:51 ------- Here is a sample without the inlining: void h() { int *t; __asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (t)); *t = 0; } The store is not dead code but it is mark as so.