From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23186 invoked by alias); 6 Nov 2004 20:14:09 -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 23171 invoked by uid 48); 6 Nov 2004 20:14:08 -0000 Date: Sat, 06 Nov 2004 20:14:00 -0000 Message-ID: <20041106201408.23170.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040817140542.17064.pbrook@gcc.gnu.org> References: <20040817140542.17064.pbrook@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/17064] -falias-noargument-global doesn't eliminate dead stores X-Bugzilla-Reason: CC X-SW-Source: 2004-11/txt/msg00681.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-06 20:14 ------- Even for the simple testcase, we don't eliminate dead stores: int i; int j; int main() { i = 0; <<--should be removed j = 0; <<--should be removed j = 1; <<--should be removed i = 42; j = 2; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17064