From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8376 invoked by alias); 27 Apr 2009 01:31:27 -0000 Received: (qmail 8345 invoked by uid 48); 27 Apr 2009 01:31:13 -0000 Date: Mon, 27 Apr 2009 01:31:00 -0000 Message-ID: <20090427013113.8344.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug preprocessor/35010] preprocessor loses leading whitespace In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "sabre at nondot dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2009-04/txt/msg02530.txt.bz2 ------- Comment #4 from sabre at nondot dot org 2009-04-27 01:31 ------- If the definition is: #define debug(format, ...) format,## __VA_ARGS__) Then we should still get: Z, ); W, ); If the definition is: #define debug(format,...) format,##__VA_ARGS__) Then we should get: Z,); W,); (and gcc currently gets this right) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35010