From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24978 invoked by alias); 29 May 2006 13:46:48 -0000 Received: (qmail 24937 invoked by uid 48); 29 May 2006 13:46:41 -0000 Date: Mon, 29 May 2006 13:46:00 -0000 Message-ID: <20060529134641.24936.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/27793] num_ssa_names inconsistent or immediate use iterator wrong In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "rguenth at gcc dot gnu dot org" 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 X-SW-Source: 2006-05/txt/msg02934.txt.bz2 List-Id: ------- Comment #5 from rguenth at gcc dot gnu dot org 2006-05-29 13:46 ------- extern int foo (__const char * __format, ...); extern int verbose; void demux_open_rtp(int sdpDescription) { int* rtspClient = 0; if (sdpDescription == 0) { extern int verbose; rtspClient = new int[verbose]; } int* mediaSession = rtspClient; if (verbose > 0) foo ("Increased socket receive buffer"); } static inline const char *tag() { } void afterReading(void) { if (verbose > 0) foo ("%s%s", tag(), tag()); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27793