From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23979 invoked by alias); 6 Oct 2005 14:29:46 -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 23943 invoked by uid 48); 6 Oct 2005 14:29:43 -0000 Date: Thu, 06 Oct 2005 14:29:00 -0000 Message-ID: <20051006142943.23942.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug tree-optimization/24238] [4.1 Regression] ICE: verify_ssa failed "statement makes a memory store, but has no V_MAY_DEFS nor V_MUST_DEFS" In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "pinskia at gcc dot gnu dot org" X-SW-Source: 2005-10/txt/msg00631.txt.bz2 List-Id: ------- Comment #1 from pinskia at gcc dot gnu dot org 2005-10-06 14:29 ------- Confirmed, reduced to: struct SDL_Rect { unsigned short w, h; }; int width(); SDL_Rect const &location(); SDL_Rect inner_location() { SDL_Rect r = location(); r.w -= width(); return r; } -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2005-10-06 14:29:43 date| | Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24238