[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#205404: marked as done (gcc-3.3: generic thunk code fails for method `virtual void Virt::p(const char*, ...)' which uses `...')



Your message dated Thu, 14 Aug 2003 23:30:42 +0200
with message-id <16187.65410.355325.69325@gargle.gargle.HOWL>
and subject line Bug#205404: gcc-3.3: generic thunk code fails for method `virtual void Virt::p(const char*, ...)' which uses `...'
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 14 Aug 2003 13:41:30 +0000
>From emmanuel.eckard@epfl.ch Thu Aug 14 08:41:28 2003
Return-path: <emmanuel.eckard@epfl.ch>
Received: from mail0.epfl.ch [128.178.50.57] 
	by master.debian.org with smtp (Exim 3.35 1 (Debian))
	id 19nIM3-000492-00; Thu, 14 Aug 2003 08:41:27 -0500
Received: (qmail 18047 invoked from network); 14 Aug 2003 13:41:26 -0000
Received: from sphgepc3.epfl.ch (HELO yukiko) (128.178.178.120)
  by mail0.epfl.ch with SMTP; 14 Aug 2003 13:41:26 -0000
Received: from manu by yukiko with local (Exim 3.36 #1 (Debian))
	id 19nIPE-0000Lm-00; Thu, 14 Aug 2003 15:44:44 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Emmanuel Eckard <emmanuel.eckard@epfl.ch>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: gcc-3.3: generic thunk code fails for method `virtual void Virt::p(const
 char*, ...)' which uses `...'
X-Mailer: reportbug 2.22
Date: Thu, 14 Aug 2003 15:44:44 +0200
Message-Id: <[🔎] E19nIPE-0000Lm-00@yukiko>
Sender: Emmanuel Eckard <manu@yukiko>
X-BadReturnPath: manu@yukiko rewritten as emmanuel.eckard@epfl.ch
  using "From" header
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0
	tests=BAYES_01,HAS_PACKAGE
	version=2.53-bugs.debian.org_2003_07_20
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_07_20 (1.174.2.15-2003-03-30-exp)

Package: gcc-3.3
Version: 1:3.3.1-1
Severity: important



-- System Information:
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux yukiko 2.4.21-ben2 #2 Sun Aug 10 18:47:57 CEST 2003 ppc
Locale: LANG=C, LC_CTYPE=C

Versions of packages gcc-3.3 depends on:
ii  binutils                 2.14.90.0.5-0.2 The GNU assembler, linker and bina
ii  cpp-3.3                  1:3.3.1-1       The GNU C preprocessor
ii  gcc-3.3-base             1:3.3.1-1       The GNU Compiler Collection (base 
ii  libc6                    2.3.1-17.0.2    GNU C Library: Shared libraries an
ii  libgcc1                  1:3.3.1-1       GCC support library

-- no debconf information

Thereafter is include the code that fails to compile

#include <stdio.h>
#include <stdarg.h>

class Base
{
public:
        Base() { }
	        virtual void p(const char *format, ...)=0;
	};

class Der1: public virtual Base
	{
	public:
         Der1():Base() { }
        virtual void p(const char *format, ...)=0;
	};

class Der2: public virtual Base
	{
	public:
        Der2():Base() { }
        virtual void p(const char *format, ...)=0;
	};

class Virt:public virtual Der1, public virtual Der2
	{			
	public:
        Virt():Der1(),Der2() { }
        virtual void p(const char *format, ...)
       {
               va_list arglist;
               va_start(arglist,format);
	       vprintf(format, arglist);
               va_end(arglist);
        }
	};
												
int main(int argc, char *argv[])
{
       Virt v;
       v.p("Hello %d\n", 10);
}
		


---------------------------------------
Received: (at 205404-done) by bugs.debian.org; 14 Aug 2003 21:32:02 +0000
>From doko@cs.tu-berlin.de Thu Aug 14 16:31:59 2003
Return-path: <doko@cs.tu-berlin.de>
Received: from mail.cs.tu-berlin.de [130.149.17.13] 
	by master.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 19nPhP-0000pr-00; Thu, 14 Aug 2003 16:31:59 -0500
Received: from bolero.cs.tu-berlin.de (daemon@bolero.cs.tu-berlin.de [130.149.19.1])
	by mail.cs.tu-berlin.de (8.9.3/8.9.3) with ESMTP id XAA04825;
	Thu, 14 Aug 2003 23:30:42 +0200 (MET DST)
Received: (from doko@localhost)
	by bolero.cs.tu-berlin.de (8.11.6+Sun/8.9.3) id h7ELUgo29760;
	Thu, 14 Aug 2003 23:30:42 +0200 (MEST)
From: Matthias Klose <doko@cs.tu-berlin.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <16187.65410.355325.69325@gargle.gargle.HOWL>
Date: Thu, 14 Aug 2003 23:30:42 +0200
To: Emmanuel Eckard <emmanuel.eckard@epfl.ch>, 205404-done@bugs.debian.org
Subject: Re: Bug#205404: gcc-3.3: generic thunk code fails for method `virtual void Virt::p(const char*, ...)' which uses `...'
In-Reply-To: <[🔎] E19nIPE-0000Lm-00@yukiko>
References: <[🔎] E19nIPE-0000Lm-00@yukiko>
X-Mailer: VM 7.03 under 21.4 (patch 6) "Common Lisp" XEmacs Lucid
Delivered-To: 205404-done@bugs.debian.org
X-Spam-Status: No, hits=-2.3 required=4.0
	tests=BAYES_01,IN_REP_TO,REFERENCES,USER_AGENT_VM
	version=2.53-bugs.debian.org_2003_07_20
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_07_20 (1.174.2.15-2003-03-30-exp)

this is fixed in 1:3.3.2-0pre0, uploaded today.



Reply to: