From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19120 invoked by alias); 12 Oct 2003 08:21:02 -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 19094 invoked by uid 48); 12 Oct 2003 08:21:01 -0000 Date: Sun, 12 Oct 2003 08:21:00 -0000 Message-ID: <20031012082101.19093.qmail@sources.redhat.com> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20031008000233.12535.abacau@yahoo.com.au> References: <20031008000233.12535.abacau@yahoo.com.au> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug optimization/12535] Attempt to delete prologue/epilogue insn X-Bugzilla-Reason: CC X-SW-Source: 2003-10/txt/msg00786.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=12535 ------- Additional Comments From pinskia at gcc dot gnu dot org 2003-10-12 08:20 ------- Here is the reduced sources (might be fixed on the mainline): typedef struct { int i; int j; int k; int l; } mach_msg_header_t; struct mach_trap_args { void *rmsg; }; typedef struct { mach_msg_header_t rep_msgh; } mach_vm_wire_reply_t; int mach_vm_wire(args) struct mach_trap_args *args; { mach_vm_wire_reply_t *rep = args->rmsg; __builtin_memset((&rep), 0, (sizeof(*rep))); return mach_msg_error(args, 22); }