From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1670 invoked by alias); 27 Jul 2005 17:06:11 -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 1648 invoked by uid 48); 27 Jul 2005 17:06:06 -0000 Date: Wed, 27 Jul 2005 17:13:00 -0000 Message-ID: <20050727170606.1647.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/loads X-Bugzilla-Reason: CC X-SW-Source: 2005-07/txt/msg03581.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-27 17:06 ------- Another testcase for extra load at the tree level: int g (int* g1, int* g2) { int i; g2[0] = 2; g1[0] = 3; return g2[0]; } Note the test in comment #1 has been fixed already. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17064