From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 46735 invoked by alias); 8 Jan 2017 15:08:36 -0000 Mailing-List: contact overseers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: , Sender: overseers-owner@sourceware.org Received: (qmail 46726 invoked by uid 89); 8 Jan 2017 15:08:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=6.2 X-HELO: mail-wj0-f196.google.com Received: from mail-wj0-f196.google.com (HELO mail-wj0-f196.google.com) (209.85.210.196) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 08 Jan 2017 15:08:25 +0000 Received: by mail-wj0-f196.google.com with SMTP id kp2so82886194wjc.0 for ; Sun, 08 Jan 2017 07:08:25 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=9N+uFF2pXZyWTbn+0PMYanOp/6VwcWUtyLf2b/BbTLo=; b=OELg9vXIWuBtenSwytCBjM7Tq7azmYM/LUCMcyywsxgz7AD1oEggk+YYv9VXVg15e9 2E6qmjtWCARKk4aicre5/L9CzsPsAN7SG7AyPgNEUbp1pflNAHbaViCFx5nU2TRHGsP5 mVr5HFvixBz8Kvmf2kcAfOI48vFntKRq3biUC78mvjpP0N5KyszNhPSj5/sppQNswGZD aP9QygHCmf4a4djFasEoiTqJgZ9Cp3wnYQXVmmZN+Y0+v1TkR9YzmUouriDdyIgJndGV YjCj4QxgNrbirAOXOhVcwX9Lvh3rTTR6y7ox5nOQ3yN8Z5iiYi4UdorGKXNxGm2rNxQF u5KA== X-Gm-Message-State: AIkVDXKDi64yqE/CTA8HojZj5DvcqIygD5rPwtArvkvh+oZspdPM0Nc4/9M8utFAfwT1wg== X-Received: by 10.194.173.228 with SMTP id bn4mr61768150wjc.161.1483888103469; Sun, 08 Jan 2017 07:08:23 -0800 (PST) Received: from murdock.my-fqdn.de (pD9FCB17B.dip0.t-ipconnect.de. [217.252.177.123]) by smtp.gmail.com with ESMTPSA id lc8sm17888309wjb.17.2017.01.08.07.08.22 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 08 Jan 2017 07:08:22 -0800 (PST) Date: Sun, 08 Jan 2017 15:08:00 -0000 From: Stefan Kempf To: overseers@gcc.gnu.org Subject: Bugzilla account creation Message-ID: <20170108150818.GA26173@murdock.my-fqdn.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.6.2 (2016-07-01) X-SW-Source: 2017-q1/txt/msg00012.txt.bz2 Hello, could you please open a bugzilla account at gcc.gnu.org for sisnkemp@gmail.com? The webpage says account creation is filtered because of spammers. I want to report this internal compiler error/segfault for gcc versions 6.1, 6.2, 6.3: When compiling the example below with gcc 6.x on GNU/Linux x86_64 or OpenBSD/amd64, gcc crashes (internal compiler error: segmentation fault) $ gcc -O2 -pipe -c input.i input.i: In function 'void doit()': input.i:32:6: internal compiler error: Segmentation fault void doit() { ^~~~ libbacktrace could not find executable to open Please submit a full bug report, with preprocessed source if appropriate. See for instructions. input.i: extern "C" { float sqrtf(float); } class T { public: float floats[1]; inline float length() const { return sqrtf(floats[0]); } }; void destruct(void *); class Container { T Ts[1]; public: ~Container() { destruct((void *)Ts); } T& operator[](int n) { return Ts[0]; } }; void fill(Container&); void doit() { Container data; float max = 10; int i, j, k; for (i = 0; i < 10; i++) { for (j = 1; j < 10; j++) { if (max < 5) break; fill( data); max = data[0].length(); for (k = 1; k < j; k++) { max = 5; } } } }