From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27531 invoked by alias); 23 Feb 2005 18:59:55 -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 27485 invoked by uid 48); 23 Feb 2005 18:59:53 -0000 Date: Wed, 23 Feb 2005 23:29:00 -0000 Message-ID: <20050223185953.27484.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20050223142857.20165.pinskia@gcc.gnu.org> References: <20050223142857.20165.pinskia@gcc.gnu.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug tree-optimization/20165] Pointer does not really escape with write X-Bugzilla-Reason: CC X-SW-Source: 2005-02/txt/msg02866.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-23 18:59 ------- A C testcase (scanf this time): #include int main(void) { int i; int j; scanf("%d", &i); for(;i<=0;i--) printf("H"); return 0; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20165